diff options
Diffstat (limited to 'standalone/osx/git-annex.app/Contents/MacOS/runshell')
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/runshell | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell index 3366620ab..e972b777f 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -11,12 +11,12 @@ if [ ! -d "$base" ]; then exit 1 fi -if [ ! -e "$base/bin/git-annex" ]; then - echo "** base directory $base does not contain bin/git-annex" >&2 +if [ ! -e "$base/git-annex" ]; then + echo "** base directory $base does not contain git-annex" >&2 exit 1 fi -if [ ! -e "$base/bin/git" ]; then - echo "** base directory $base does not contain bin/git" >&2 +if [ ! -e "$base/git" ]; then + echo "** base directory $base does not contain git" >&2 exit 1 fi |