From d09026c65af90345551aeadc68f0bf18e9ce91e3 Mon Sep 17 00:00:00 2001 From: Alexander Raistrick Date: Mon, 6 Jan 2025 12:26:40 -0500 Subject: [PATCH] Fix / - substitution in launch.sh branchnames --- tests/integration/launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/launch.sh b/tests/integration/launch.sh index 036101a0..a44441aa 100644 --- a/tests/integration/launch.sh +++ b/tests/integration/launch.sh @@ -19,7 +19,7 @@ INFINIGEN_VERSION=$(python -c "import infinigen; print(infinigen.__version__)") COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-6) DATE=$(date '+%Y-%m-%d') JOBTAG="${DATE}_ifg-int" -BRANCH=$(git rev-parse --abbrev-ref HEAD | sed 's/_/-/g; s/\//_/g') +BRANCH=$(git rev-parse --abbrev-ref HEAD | sed 's/_/-/g; s|/|-|g; s/\//_/g') VERSION_STRING="${DATE}_${BRANCH}_${COMMIT_HASH}_${USER}" mkdir -p $OUTPUT_PATH