Replace /bin/sh with sh for portability (#5291)

This makes things work even on system lacking /bin/sh, such as on
non-rooted Android systems.
This commit is contained in:
Fredrik Fornwall 2016-08-09 02:39:11 +02:00 committed by Marc Cornellà
parent a7de0fabd7
commit 9772f8e10d
2 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@ function zsh_stats() {
}
function uninstall_oh_my_zsh() {
env ZSH=$ZSH /bin/sh $ZSH/tools/uninstall.sh
env ZSH=$ZSH sh $ZSH/tools/uninstall.sh
}
function upgrade_oh_my_zsh() {
env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
env ZSH=$ZSH sh $ZSH/tools/upgrade.sh
}
function take() {

View File

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