install.py

branch
maintenance
changeset 6923
d062df8f1d9f
parent 6906
a34f0dc442a1
child 6939
af0ca76e26fd
--- a/install.py	Sat Mar 02 11:17:15 2019 +0100
+++ b/install.py	Fri Apr 05 19:06:39 2019 +0200
@@ -869,7 +869,7 @@
             ['*.qss'])
         copyTree(
             '{1}{0}Styles'.format(os.sep, sourceDir), cfg['ericStylesDir'],
-            ['*.e4h'])
+            ['*.e4h', '*.e6h'])
         copyTree(
             '{1}{0}i18n'.format(os.sep, sourceDir), cfg['ericTranslationsDir'],
             ['*.qm'])
@@ -1905,13 +1905,16 @@
     try:
         if sys.platform.startswith(("win", "cygwin")):
             optlist, args = getopt.getopt(
-                argv[1:], "chxyza:b:d:f:", ["help", "pyqt=", "noapis"])
+                argv[1:], "chxyza:b:d:f:",
+                ["help", "pyqt=", "no-apis"])
         elif sys.platform == "darwin":
             optlist, args = getopt.getopt(
-                argv[1:], "chxyza:b:d:f:i:m:n:p:", ["help", "pyqt=", "noapis"])
+                argv[1:], "chxyza:b:d:f:i:m:n:p:",
+                ["help", "pyqt=", "no-apis"])
         else:
             optlist, args = getopt.getopt(
-                argv[1:], "chxyza:b:d:f:i:", ["help", "pyqt=", "noapis"])
+                argv[1:], "chxyza:b:d:f:i:",
+                ["help", "pyqt=", "no-apis"])
     except getopt.GetoptError as err:
         print(err)
         usage()

eric ide

mercurial