Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Epaneshnikov <alex19ep@archlinux.org>2023-04-26 21:26:16 +0300
committerLevente Polyak <anthraxx@archlinux.org>2023-05-20 00:08:13 +0200
commit93306718252d3f7ae9722d2f8b059a18c8a65b22 (patch)
treedfa24a4033ce39ebc31c0930487d8eeeaca3b808 /src
parent8e3b6bcc5b82b270f8d310865f14f2b0405eddd7 (diff)
archrelease: fix mangled release package status output
Git push will print its status, hence switch from a busy line indicator to a single line message and allow Git to print its status accordingly. Otherwise we get: ==> Releasing package...Enumerating objects: 6, done.
Diffstat (limited to 'src')
-rw-r--r--src/archrelease.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/archrelease.in b/src/archrelease.in
index d206ab8..818b0ca 100644
--- a/src/archrelease.in
+++ b/src/archrelease.in
@@ -89,7 +89,6 @@ if git tag --verify "$gittag" &> /dev/null; then
exit 0
fi
-stat_busy "Releasing package"
+msg "Releasing package"
git tag --sign --message="Package release ${pkgver}" "$gittag" || abort
git push --tags --set-upstream origin main || abort
-stat_done