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 | beabff4830b57f2778b0ab68c2adc9d5fb7fb5c1 (patch) | |
tree | c862809ed0b35838ded74c88feeda4699130c806 /install | |
parent | 9842e984c6529cb7370eb5d4d35a17084a0e0133 (diff) | |
download | Ishtar-beabff4830b57f2778b0ab68c2adc9d5fb7fb5c1.tar.bz2 Ishtar-beabff4830b57f2778b0ab68c2adc9d5fb7fb5c1.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 |