poezio/launch.sh

13 lines
165 B
Bash
Raw Normal View History

#!/usr/sh
2010-02-01 20:28:33 +00:00
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" "$@"
2011-02-26 13:16:19 +00:00