Browse Source

Fix searching for warnings and debug in log.

v2
Andrew Belt 1 month ago
parent
commit
53fe224b38
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/update.py

+ 1
- 1
scripts/update.py View File

@@ -255,7 +255,7 @@ print(f"Press enter to launch Rack and test the following packages: {manifest_ve
input() input()
try: try:
common.system(f"cd {RACK_SYSTEM_DIR} && ./Rack") common.system(f"cd {RACK_SYSTEM_DIR} && ./Rack")
common.system(f"cd {RACK_USER_DIR} && grep '\\bwarn|debug\\b' log.txt || true")
common.system(f"cd {RACK_USER_DIR} && grep -P '\\bwarn|debug\\b' log.txt || true")
except: except:
print(f"Rack failed! Enter to continue if desired") print(f"Rack failed! Enter to continue if desired")




Loading…
Cancel
Save