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.
This commit is contained in:
Alexander Epaneshnikov 2023-04-26 21:26:16 +03:00 committed by Levente Polyak
parent 8e3b6bcc5b
commit 9330671825
No known key found for this signature in database
GPG Key ID: FC1B547C8D8172C8
1 changed files with 1 additions and 2 deletions

View File

@ -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