From 368ae72d9d6ba15ca2877f9faa850c4e503a327f Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdx@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:18:11 -0600 Subject: [PATCH] reuse open branch --- scripts/release-alpine.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-alpine.sh b/scripts/release-alpine.sh index c14b00e4f3..c8a5d1677a 100755 --- a/scripts/release-alpine.sh +++ b/scripts/release-alpine.sh @@ -27,13 +27,13 @@ abuild -r apkbuild-lint APKBUILD git add APKBUILD -git checkout -B rtx +git checkout -b rtx git commit -m "community/rtx: upgrade to ${RTX_VERSION#v}" git remote add jdxcode "https://jdxcode:$GITLAB_TOKEN@gitlab.alpinelinux.org/jdxcode/aports.git" if [ "$DRY_RUN" == 0 ]; then - git push -f jdxcode + git push jdxcode fi open_mr="$(gitlab mr list -R alpine/aports --author=@me)"