diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-07 14:44:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-07 14:44:44 -0400 |
commit | 602f406b4a74b26b32c3af8ba20d5bebcebdc5d9 (patch) | |
tree | 318e2bec3df7100669339153cd42ed1e61071c4e /standalone/linux | |
parent | 16fe3b646a16a86fe497ac95faff45787bda7f4e (diff) |
runshell: start sh, not $SHELL
$SHELL may need libraries not included in the bundle
Diffstat (limited to 'standalone/linux')
-rwxr-xr-x | standalone/linux/runshell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/linux/runshell b/standalone/linux/runshell index 816c3036e..e3d75d7a0 100755 --- a/standalone/linux/runshell +++ b/standalone/linux/runshell @@ -67,5 +67,5 @@ if [ "$1" ]; then shift 1 exec "$cmd" "$@" else - $SHELL + sh fi |