Browse Source

Merge #262: Allow more specific --python targets for install.sh

5ac3aae Allow more specific --python targets for install.sh (Kristaps Kaupe)
master
AdamISZ 7 years ago
parent
commit
90607ed961
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 4
      install.sh

4
install.sh

@ -365,11 +365,11 @@ parse_flags ()
shift
done
if [[ ${with_qt} == 1 ]] && [[ ${python} == python2 ]]; then
if [[ ${with_qt} == 1 ]] && [[ ${python} == python2* ]]; then
echo "ERROR: Joinmarket-Qt is currently only available for Python 3
Use the flag '--python=python3' to enable a python3 install."
return 1
elif [[ ${with_qt} != 1 ]] && [[ ${python} == python3 ]]; then
elif [[ ${with_qt} != 1 ]] && [[ ${python} == python3* ]]; then
read -p "
INFO: Joinmarket-Qt for GUI Taker and Tumbler modes is available.
Install Qt dependencies (~160mb) ? [y|n] : "

Loading…
Cancel
Save