--- 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")