Replace /usr/bin/env with env

Some environments (such as Android) does not have /usr/bin.
This commit is contained in:
Fredrik Fornwall 2014-08-20 23:52:05 +02:00
commit dac2a6e27a
4 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ function _update_zsh_update() {
}
function _upgrade_zsh() {
/usr/bin/env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
# update the zsh file
_update_zsh_update
}