scripts/install.py

branch
eric7
changeset 9378
ac7786c2109f
parent 9377
b9c8dc3b7da1
child 9380
3d662dda80e8
diff -r b9c8dc3b7da1 -r ac7786c2109f scripts/install.py
--- a/scripts/install.py	Sun Oct 02 11:29:11 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:")
@@ -2099,19 +2099,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)

eric ide

mercurial