From f546ce3ca84fa9bfac50db726bf71af27373a9fd Mon Sep 17 00:00:00 2001 From: Brad Rogers Date: Fri, 16 Oct 2020 17:13:26 -0700 Subject: [PATCH] Fix branch name in update_version script (#8) --- scripts/update_version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update_version.sh b/scripts/update_version.sh index ccfe3af..65b8c04 100644 --- a/scripts/update_version.sh +++ b/scripts/update_version.sh @@ -7,11 +7,11 @@ else set -ex NEW_VERSION=$1 - git checkout master + git checkout main git reset --hard HEAD git tag "v${NEW_VERSION}" -m "${NEW_VERSION} release" git push origin git push origin --tags -fi \ No newline at end of file +fi