diff options
author | louiz’ <louiz@louiz.org> | 2018-08-20 19:42:33 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-08-20 19:42:33 +0200 |
commit | 7ce30f8f272227f1ef418c6bb5aafc7b9bde39e5 (patch) | |
tree | 47d340e959099d752a24db213e6cbd2821a5b2ae /launch.sh | |
parent | 390d076abb076b9c603a3343d239d3dba2665638 (diff) | |
parent | 0ec525005644d6cdd8b6117e1a4e581a1655cbcb (diff) | |
download | poezio-7ce30f8f272227f1ef418c6bb5aafc7b9bde39e5.tar.gz poezio-7ce30f8f272227f1ef418c6bb5aafc7b9bde39e5.tar.bz2 poezio-7ce30f8f272227f1ef418c6bb5aafc7b9bde39e5.tar.xz poezio-7ce30f8f272227f1ef418c6bb5aafc7b9bde39e5.zip |
Merge branch 'launch-script-version' into 'master'
Only check if `.git` exists, not more
See merge request poezio/poezio!9
Diffstat (limited to 'launch.sh')
-rwxr-xr-x | launch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,11 +5,11 @@ then POEZIO_VENV="poezio-venv" fi -if [ -d .git ] +if [ -e .git ] then args=$(git show --format='%h %ci' | head -n1) else - args="0.9-dev" + args="0.12-dev" fi if [ -e "$POEZIO_VENV" ] |