From: Mark Vainomaa Date: Wed, 11 Mar 2020 06:52:51 +0000 (+0200) Subject: FEATURE: Don't use fully qualified path for bash in host (#458) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3d746e72020ba03ceca0d1185f9ed70ea975b88e;p=discourse_docker.git FEATURE: Don't use fully qualified path for bash in host (#458) --- diff --git a/launcher b/launcher index 383ebb9..12bca22 100755 --- a/launcher +++ b/launcher @@ -788,7 +788,7 @@ case "$command" in do args[$j]=${BASH_ARGV[$i]} done - exec /bin/bash $0 "${args[@]}" # $@ is empty, because of shift at the beginning. Use BASH_ARGV instead. + exec bash $0 "${args[@]}" # $@ is empty, because of shift at the beginning. Use BASH_ARGV instead. elif [ $REMOTE = $BASE ]; then echo "Your version of Launcher is ahead of origin"