diff options
Diffstat (limited to 'standalone')
-rwxr-xr-x | standalone/linux/runshell | 2 | ||||
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/runshell | 2 |
2 files changed, 2 insertions, 2 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 diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell index 51748285a..ade1dd3f6 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -74,5 +74,5 @@ if [ "$1" ]; then shift 1 exec "$cmd" "$@" else - $SHELL + sh fi |