diff options
author | Joey Hess <joey@kitenet.net> | 2013-03-20 14:11:36 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-03-20 14:11:36 -0400 |
commit | a1321e82520651a1282b621cf9148a4611247238 (patch) | |
tree | cf9d3e556bf80eb6d00ed948f473765b3bb9cc23 /standalone | |
parent | 92bcc18061d7774e98c5856f0910adda8865f608 (diff) |
deal with $0 having spaces in it
Diffstat (limited to 'standalone')
-rwxr-xr-x | standalone/linux/git-annex | 2 | ||||
-rwxr-xr-x | standalone/linux/git-annex-webapp | 2 | ||||
-rwxr-xr-x | standalone/linux/runshell | 2 | ||||
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/git-annex | 2 | ||||
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/git-annex-webapp | 2 | ||||
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/runshell | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/standalone/linux/git-annex b/standalone/linux/git-annex index cda5b569b..57eb343f9 100755 --- a/standalone/linux/git-annex +++ b/standalone/linux/git-annex @@ -1,5 +1,5 @@ #!/bin/sh -base="$(dirname $0)" +base="$(dirname "$0")" if [ ! -d "$base" ]; then echo "** cannot find base directory (I seem to be $0)" >&2 exit 1 diff --git a/standalone/linux/git-annex-webapp b/standalone/linux/git-annex-webapp index 61a9bbbeb..40fc6399d 100755 --- a/standalone/linux/git-annex-webapp +++ b/standalone/linux/git-annex-webapp @@ -1,5 +1,5 @@ #!/bin/sh -base="$(dirname $0)" +base="$(dirname "$0")" if [ ! -d "$base" ]; then echo "** cannot find base directory (I seem to be $0)" >&2 exit 1 diff --git a/standalone/linux/runshell b/standalone/linux/runshell index a1c93792d..a36e49083 100755 --- a/standalone/linux/runshell +++ b/standalone/linux/runshell @@ -4,7 +4,7 @@ set -e -base="$(dirname $0)" +base="$(dirname "$0")" if [ ! -d "$base" ]; then echo "** cannot find base directory (I seem to be $0)" >&2 diff --git a/standalone/osx/git-annex.app/Contents/MacOS/git-annex b/standalone/osx/git-annex.app/Contents/MacOS/git-annex index f6b9d9c78..5c63d15c9 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/git-annex +++ b/standalone/osx/git-annex.app/Contents/MacOS/git-annex @@ -1,5 +1,5 @@ #!/bin/sh -base="$(dirname $0)" +base="$(dirname "$0")" if [ ! -d "$base" ]; then echo "** cannot find base directory (I seem to be $0)" >&2 exit 1 diff --git a/standalone/osx/git-annex.app/Contents/MacOS/git-annex-webapp b/standalone/osx/git-annex.app/Contents/MacOS/git-annex-webapp index b221db32a..73319d324 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/git-annex-webapp +++ b/standalone/osx/git-annex.app/Contents/MacOS/git-annex-webapp @@ -1,5 +1,5 @@ #!/bin/sh -base="$(dirname $0)" +base="$(dirname "$0")" if [ ! -d "$base" ]; then echo "** cannot find base directory (I seem to be $0)" >&2 exit 1 diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell index 23f9ff253..9f1457e25 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -4,7 +4,7 @@ set -e -base="$(dirname $0)" +base="$(dirname "$0")" if [ ! -d "$base" ]; then echo "** cannot find base directory (I seem to be $0)" >&2 |