diff options
Diffstat (limited to 'ui-macos/git-annex.app/Contents/MacOS/runshell')
-rwxr-xr-x | ui-macos/git-annex.app/Contents/MacOS/runshell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-macos/git-annex.app/Contents/MacOS/runshell b/ui-macos/git-annex.app/Contents/MacOS/runshell index 78ba3bf0c..ade917686 100755 --- a/ui-macos/git-annex.app/Contents/MacOS/runshell +++ b/ui-macos/git-annex.app/Contents/MacOS/runshell @@ -47,7 +47,7 @@ export GIT_EXEC_PATH if [ "$1" ]; then cmd="$1" shift 1 - "$cmd" "$@" + exec "$cmd" "$@" else $SHELL fi |