From 12e454178d02da3e855de03df01681a3e7f447d1 Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Tue, 2 Jun 2020 17:00:56 -0700 Subject: [PATCH] auto-install-gui: no longer killing java here, let caller do that --- auto-install-gui.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/auto-install-gui.py b/auto-install-gui.py index 9cbf9b9a..b5d87e18 100755 --- a/auto-install-gui.py +++ b/auto-install-gui.py @@ -114,12 +114,12 @@ if newestWebFile['timestamp'] > newestDirFile['timestamp']: print(f"{e}\nInstallation failed. Please Try again.") sys.exit(1) #=========ATTEMPT TO RESTART GUI========== - try: - print("Killing current GUI process") - os.system("if pgrep java; then pgrep java | xargs kill -9 ;fi") - except Exception as e: - print(f"{e}\nProcess kill failed. Please try again") - sys.exit(1) +# try: +# print("Killing current GUI process") +# os.system("if pgrep java; then pgrep java | xargs kill -9 ;fi") +# except Exception as e: +# print(f"{e}\nProcess kill failed. Please try again") +# sys.exit(1) else: print("Current GUI version up to date")