diff options
author | Fredrik Fornwall <fredrik@fornwall.net> | 2016-08-09 02:39:11 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-08-09 02:39:11 +0200 |
commit | 9772f8e10d07ce982a45fcce9b074e9084ad76cb (patch) | |
tree | 431d295b47a42a328f5edcb844852b3a96f7c4f6 /tools/check_for_upgrade.sh | |
parent | a7de0fabd7ebbf1776942a8c7fde8ee33ed681b0 (diff) | |
download | zsh-9772f8e10d07ce982a45fcce9b074e9084ad76cb.tar.gz zsh-9772f8e10d07ce982a45fcce9b074e9084ad76cb.tar.bz2 zsh-9772f8e10d07ce982a45fcce9b074e9084ad76cb.zip |
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.
Diffstat (limited to 'tools/check_for_upgrade.sh')
-rw-r--r-- | tools/check_for_upgrade.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_for_upgrade.sh b/tools/check_for_upgrade.sh index 881bc6c49..bd9aba8be 100644 --- a/tools/check_for_upgrade.sh +++ b/tools/check_for_upgrade.sh @@ -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 } |