runshell: start sh, not $SHELL

$SHELL may need libraries not included in the bundle
This commit is contained in:
Joey Hess 2012-12-07 14:44:44 -04:00
parent 48b17bd8ec
commit 0931ad6be8
2 changed files with 2 additions and 2 deletions

View file

@ -67,5 +67,5 @@ if [ "$1" ]; then
shift 1
exec "$cmd" "$@"
else
$SHELL
sh
fi

View file

@ -74,5 +74,5 @@ if [ "$1" ]; then
shift 1
exec "$cmd" "$@"
else
$SHELL
sh
fi