diff options
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 |
commit | ffa9eb32c8e1445d51c12dec165ce391e4f04aa4 (patch) | |
tree | c862809ed0b35838ded74c88feeda4699130c806 /install | |
parent | 25d4879815125aab2e80dbc75ce1ba1deb2106c6 (diff) | |
download | Ishtar-ffa9eb32c8e1445d51c12dec165ce391e4f04aa4.tar.bz2 Ishtar-ffa9eb32c8e1445d51c12dec165ce391e4f04aa4.zip |
Install: allow to choose python3 branch
Diffstat (limited to 'install')
-rwxr-xr-x | install/ishtar-install | 3 |
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 |