summaryrefslogtreecommitdiff
path: root/launch.sh
blob: 5919e8144fdc6c6e983f5d6f651974bf10a1aec1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

if [ -d "$PWD/.git" ]
then
    args=$(git show --format='%h %ci' | head -n1)
else
    args="0.8.3-dev"
fi
exec python3 -OO src/poezio.py -v "$args" "$@"