Browse Source

Merge #278: add help menu to install.sh

4abe512 fixup: fivepiece suggestions (qubenix)
c8ff323 fixup (qubenix)
3ccd395 add help menu to install.sh (qubenix)
master
AdamISZ 7 years ago
parent
commit
14ec874b37
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 16
      install.sh

16
install.sh

@ -356,11 +356,21 @@ parse_flags ()
--with-qt)
with_qt='1'
;;
-?*)
echo "warning. unknown flag : $1" 1>&2
"")
break
;;
*)
break
echo "
Usage: "${0}" [options]
Options:
--develop code remains editable in place
--python, -p python version (default: python2)
--with-qt build the Qt GUI (incompatible with python2)
"
return 1
;;
esac
shift
done

Loading…
Cancel
Save