poezio/launch.sh
2012-10-05 14:58:09 +00:00

12 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-dev"
fi
exec python3 -OO src/poezio.py -v "$args" "$@"