From b273ad520fc0c772567cb9483b67afb8e09ad0c9 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 8 Sep 2022 23:29:45 -0400 Subject: [PATCH] Update Rack binary path and screenshot zoom level. --- scripts/update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update.py b/scripts/update.py index 23afe644..01227352 100644 --- a/scripts/update.py +++ b/scripts/update.py @@ -145,7 +145,7 @@ print() print(f"Press enter to launch Rack and test the following packages: {manifest_versions_str}") input() try: - common.system(f"cd {RACK_SYSTEM_DIR} && ./Rack") + common.system(f"cd {RACK_SYSTEM_DIR} && ./build/Rack") common.system(f"cd {RACK_USER_DIR} && grep 'warn' log.txt || true") except: print(f"Rack failed! Enter to continue if desired") @@ -154,7 +154,7 @@ print(f"Press enter to generate screenshots, upload packages, upload screenshots input() # Generate screenshots -common.system(f"cd {RACK_SYSTEM_DIR} && ./Rack -t 2") +common.system(f"cd {RACK_SYSTEM_DIR} && ./build/Rack -t 4") # Upload packages common.system("cd ../packages && make upload")