From 2a3f8a878c0ab981d690beb7dc14f188bb8f08c6 Mon Sep 17 00:00:00 2001 From: Aaron Eischeid Date: Wed, 1 Jul 2026 17:42:38 -0500 Subject: [PATCH] newer git didn't like that old tracking shortcut --- scripts/release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 38c8b07..f1fcf05 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -27,7 +27,7 @@ fi # Create temp branch to run release scripts timestamp=$(date "+%s") local_branch=release-temp/$timestamp -git checkout -tb $local_branch +git checkout -b "$local_branch" # Bump version and generate docs with updated versions if test -n "$ASK_VERSION" @@ -49,10 +49,10 @@ remote_branch="release/$version" # Push branch to upstream git commit -a -m "Release $version" -git push origin $local_branch:$remote_branch +git push origin "$local_branch:$remote_branch" git checkout main # Cleanup -git branch -D $local_branch +git branch -D "$local_branch" echo "Pushed $remote_branch. Open a PR and merge to publish the release."