Added a few more feedback to the install script.

Sun, 28 Apr 2013 15:38:35 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 28 Apr 2013 15:38:35 +0200
changeset 2634
8bd79dfb48a5
parent 2633
3231fa5bcb25
child 2636
f3dd3c8d4aa4
child 2640
dedcd4f987e0

Added a few more feedback to the install script.

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Sun Apr 28 15:21:35 2013 +0200
+++ b/install.py	Sun Apr 28 15:38:35 2013 +0200
@@ -1086,6 +1086,7 @@
         pass
     
     # cleanup old installation
+    print("Cleaning up old installation ...")
     try:
         if doCleanup:
             if distDir:
@@ -1097,10 +1098,11 @@
         exit(7)
 
     # Create a config file and delete the default one
+    print("\nCreating configuration file ...")
     createConfig()
 
     # Compile .ui files
-    print("Compiling user interface files...")
+    print("\nCompiling user interface files ...")
     # step 1: remove old Ui_*.py files
     for root, _, files in os.walk(sourceDir):
         for file in [f for f in files if fnmatch.fnmatch(f, 'Ui_*.py')]:
@@ -1109,7 +1111,7 @@
     compileUiFiles()
     
     if doCompile:
-        print("\nCompiling source files...")
+        print("\nCompiling source files ...")
         if distDir:
             compileall.compile_dir(sourceDir,
                 ddir=os.path.join(distDir, modDir, cfg['ericDir']),

eric ide

mercurial