summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-08-20 19:42:33 +0200
committerlouiz’ <louiz@louiz.org>2018-08-20 19:42:33 +0200
commit7ce30f8f272227f1ef418c6bb5aafc7b9bde39e5 (patch)
tree47d340e959099d752a24db213e6cbd2821a5b2ae
parent390d076abb076b9c603a3343d239d3dba2665638 (diff)
parent0ec525005644d6cdd8b6117e1a4e581a1655cbcb (diff)
downloadpoezio-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
-rwxr-xr-xlaunch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/launch.sh b/launch.sh
index c88972f0..b049a7af 100755
--- a/launch.sh
+++ b/launch.sh
@@ -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" ]