scripts/install-debugclients.py

branch
eric7
changeset 9694
90a7081e2837
parent 9690
2dc33116df50
child 10091
ac6edcfe7831
diff -r a7e9fd398e5a -r 90a7081e2837 scripts/install-debugclients.py
--- a/scripts/install-debugclients.py	Thu Jan 12 11:41:48 2023 +0100
+++ b/scripts/install-debugclients.py	Thu Jan 12 11:52:43 2023 +0100
@@ -440,14 +440,14 @@
 
     # cleanup source if installing from source
     if installFromSource:
-        print("Cleaning up source ...", end="")
+        print("Cleaning up source ...", end="", flush=True)
         cleanupSource(os.path.join(eric7SourceDir, "DebugClients"))
         print(" Done")
 
     # cleanup old installation
     try:
         if doCleanup:
-            print("Cleaning up old installation ...", end="")
+            print("Cleaning up old installation ...", end="", flush=True)
             if distDir:
                 shutil.rmtree(distDir, True)
             else:
@@ -458,7 +458,7 @@
         exit(7)
 
     if doCompile:
-        print("Compiling source files ...", end="")
+        print("Compiling source files ...", end="", flush=True)
         skipRe = re.compile(r"DebugClients[\\/]Python[\\/]")
         sys.stdout = io.StringIO()
         if distDir:
@@ -478,7 +478,7 @@
         sys.stdout = sys.__stdout__
         print(" Done")
 
-    print("Installing eric debug clients ...", end="")
+    print("Installing eric debug clients ...", end="", flush=True)
     res = installEricDebugClients()
     print(" Done")
 

eric ide

mercurial