summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com>2023-12-28 22:43:12 -0600
committerGitHub <noreply@github.com>2023-12-28 20:43:12 -0800
commita1e86781bda5d5d408aae2448a13513d9b900b18 (patch)
treefc7df3136fead40808b5b7770d2d510d3dc77ef4
parentd52fda6015a2bcd4bb9e34004599c6a26e3616d6 (diff)
downloadspack-a1e86781bda5d5d408aae2448a13513d9b900b18.tar.gz
spack-a1e86781bda5d5d408aae2448a13513d9b900b18.tar.bz2
spack-a1e86781bda5d5d408aae2448a13513d9b900b18.tar.xz
spack-a1e86781bda5d5d408aae2448a13513d9b900b18.zip
CI: Fix timing search paths to ignore bootstrap (#41893)
-rw-r--r--share/spack/gitlab/cloud_pipelines/scripts/common/aggregate_package_logs.spack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/scripts/common/aggregate_package_logs.spack.py b/share/spack/gitlab/cloud_pipelines/scripts/common/aggregate_package_logs.spack.py
index b785fc9fed..ec40c4c230 100644
--- a/share/spack/gitlab/cloud_pipelines/scripts/common/aggregate_package_logs.spack.py
+++ b/share/spack/gitlab/cloud_pipelines/scripts/common/aggregate_package_logs.spack.py
@@ -30,7 +30,7 @@ if __name__ == "__main__":
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))