--- a/scripts/install.py Sat Oct 01 13:06:31 2022 +0200 +++ b/scripts/install.py Sun Oct 02 11:44:07 2022 +0200 @@ -123,18 +123,18 @@ print( " {0} [-chvxz] [-a dir] [-b dir] [-d dir] [-f file] [-i dir]" " [-m name] [-n path] [-p python] [--help] [--no-apis]" - " [--no-info] [--no-tools] [--verbose] [--yes]".format(progName) + " [--no-info] [--with-tools] [--verbose] [--yes]".format(progName) ) elif sys.platform.startswith(("win", "cygwin")): print( " {0} [-chvxz] [-a dir] [-b dir] [-d dir] [-f file]" " [--clean-desktop] [--help] [--no-apis] [--no-info]" - " [--no-tools] [--verbose] [--yes]".format(progName) + " [--with-tools] [--verbose] [--yes]".format(progName) ) else: print( " {0} [-chvxz] [-a dir] [-b dir] [-d dir] [-f file] [-i dir]" - " [--help] [--no-apis] [--no-info] [--no-tools] [--verbose]" + " [--help] [--no-apis] [--no-info] [--with-tools] [--verbose]" " [--yes]".format(progName) ) print("where:") @@ -2096,19 +2096,20 @@ optlist, args = getopt.getopt( argv[1:], "chvxza:b:d:f:", - ["help", "no-apis", "no-info", "no-tools", "verbose", "yes"], + ["clean-desktop", "help", "no-apis", "no-info", "verbose", "with-tools", + "yes"], ) elif sys.platform == "darwin": optlist, args = getopt.getopt( argv[1:], "chvxza:b:d:f:i:m:n:p:", - ["help", "no-apis", "no-info", "no-tools", "verbose", "yes"], + ["help", "no-apis", "no-info", "with-tools", "verbose", "yes"], ) else: optlist, args = getopt.getopt( argv[1:], "chvxza:b:d:f:i:", - ["help", "no-apis", "no-info", "no-tools", "verbose", "yes"], + ["help", "no-apis", "no-info", "with-tools", "verbose", "yes"], ) except getopt.GetoptError as err: print(err)