From 47dec50b3cc82f3675f404756476f940f2ce685e Mon Sep 17 00:00:00 2001 From: Jagger Denhof <58100760+jdenhof@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:30:57 -0500 Subject: [PATCH] moved commit_hash in front of run_name to maintain order (#58) --- scripts/run-compare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-compare.sh b/scripts/run-compare.sh index 1b63596..46758cf 100755 --- a/scripts/run-compare.sh +++ b/scripts/run-compare.sh @@ -99,7 +99,7 @@ do run_name=$(basename "$file" .yaml) if [ "$commit_hash" != "" ]; then - run_name="${run_name}.${commit_hash}" + run_name="${commit_hash}.${run_name}" fi ran_dirs=$(ls -d "$root_dir/$experiment/$run_name"* 2>/dev/null)