CI: Fix timing search paths to ignore bootstrap (#41893)

This commit is contained in:
kwryankrattiger
2023-12-28 22:43:12 -06:00
committed by GitHub
parent d52fda6015
commit a1e86781bd

View File

@@ -30,7 +30,7 @@ def find_logs(prefix, filename):
data = []
# Look in the CWD for logs
local_log_path = os.path.join(os.path.getcwd(), args.log)
local_log_path = os.path.join(os.getcwd(), args.log)
if os.path.exists(local_log_path):
with open(local_log_path) as fd:
data.append(json.load(fd))