poezio/launch.sh
2014-02-22 14:28:08 +01:00

10 lines
165 B
Bash
Executable file

#!/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" "$@"