poezio/launch.sh
2012-10-03 23:51:05 +02:00

12 lines
165 B
Bash
Executable file

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