summaryrefslogtreecommitdiff
path: root/launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'launch.sh')
-rwxr-xr-xlaunch.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/launch.sh b/launch.sh
index 5919e814..4fddeb10 100755
--- a/launch.sh
+++ b/launch.sh
@@ -1,10 +1,10 @@
#!/bin/sh
-if [ -d "$PWD/.git" ]
+if [ -d "$(dirname $0)/.git" ]
then
- args=$(git show --format='%h %ci' | head -n1)
+ args=$(git --git-dir="$(dirname $0)/.git" show --format='%h %ci' | head -n1)
else
args="0.8.3-dev"
fi
-exec python3 -OO src/poezio.py -v "$args" "$@"
+exec python3 -OO "$(dirname $0)/src/poezio.py" -v "$args" "$@"