summaryrefslogtreecommitdiff
path: root/launch.sh
blob: 681e6fcf90cb36aa3da36c5031616480cc8fd985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh

if [ -d "$PWD/.git" ]
then
    args=$(git show --format='%h %ci' | head -n1)
else
    args="0.8-dev"
fi


exec python3 -OO src/poezio.py -v "$args" "$@"