OSX: Make git-annex-webapp run in the background, so that the app icon can be clicked on the open a new webapp when the assistant is already running.

This commit is contained in:
Joey Hess 2013-07-30 15:04:31 -04:00
parent 66b470c03d
commit f55dc1b64f
3 changed files with 9 additions and 1 deletions

View file

@ -22,4 +22,5 @@ if [ -e "$base/git-annex" ]; then
export GIT_ANNEX_APP_BASE
fi
exec "$base/runshell" git-annex webapp "$@"
# OSX wants this to run in the background.
exec "$base/runshell" git-annex webapp "$@" &