summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-07-26 11:01:27 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-07-26 11:01:27 +0200
commitffa9eb32c8e1445d51c12dec165ce391e4f04aa4 (patch)
treec862809ed0b35838ded74c88feeda4699130c806 /install
parent25d4879815125aab2e80dbc75ce1ba1deb2106c6 (diff)
downloadIshtar-ffa9eb32c8e1445d51c12dec165ce391e4f04aa4.tar.bz2
Ishtar-ffa9eb32c8e1445d51c12dec165ce391e4f04aa4.zip
Install: allow to choose python3 branch
Diffstat (limited to 'install')
-rwxr-xr-xinstall/ishtar-install3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/ishtar-install b/install/ishtar-install
index 97e1b02c6..d02db0e59 100755
--- a/install/ishtar-install
+++ b/install/ishtar-install
@@ -231,11 +231,12 @@ EOF
EOF
while [ "$version" == '' ]
do
- cecho y "* Which version would you like to use? ([develop]/master) "
+ cecho y "* Which version would you like to use? ([develop]/master/python3) "
read choice
case "$choice" in
develop ) version="develop";;
master ) version="master";;
+ python3 ) version="WIP/python3";;
'' ) version="develop";;
esac
done