From 2e6b406ff54a1e77c8f4bd64be5e39a7f618b485 Mon Sep 17 00:00:00 2001 From: Headshotnoby Date: Tue, 22 Jun 2021 23:05:02 -0400 Subject: [PATCH] emit text label 'making base backup' --- updater.py | 1 + 1 file changed, 1 insertion(+) diff --git a/updater.py b/updater.py index 0f7d2c9..f878409 100644 --- a/updater.py +++ b/updater.py @@ -187,6 +187,7 @@ class updateThread(QtCore.QThread): print "downloaded update" downloadfile.close() if platform.system() == "Darwin" and ".app" in sys.argv[0]: # bundle + self.labelText.emit("Making a backup of AO base folder...") path = "/".join(sys.argv[0].split("/")[:-1]) # to Resources folder os.system("cp -r "+path+"/base ./appbase") # move the base folder out of the app folder to avoid deletion returncode = 0