Fix the launch script from directory with spaces in them

This commit is contained in:
mathieui 2014-03-30 13:56:12 +02:00
parent 42769dd28f
commit cf37785edc

View file

@ -1,10 +1,11 @@
#!/bin/sh
poezio_dir=$(dirname "$0")
if [ -d "$(dirname $0)/.git" ]
if [ -d "$poezio_dir/.git" ]
then
args=$(git --git-dir="$(dirname $0)/.git" show --format='%h %ci' | head -n1)
args=$(git --git-dir="$poezio_dir/.git" show --format='%h %ci' | head -n1)
else
args="0.8.3-dev"
fi
exec python3 -OO "$(dirname $0)/src/poezio.py" -v "$args" "$@"
exec python3 -OO "$poezio_dir/src/poezio.py" -v "$args" "$@"