diff options
author | Alexander Epaneshnikov <alex19ep@archlinux.org> | 2023-04-26 21:26:16 +0300 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2023-05-20 00:08:13 +0200 |
commit | 93306718252d3f7ae9722d2f8b059a18c8a65b22 (patch) | |
tree | dfa24a4033ce39ebc31c0930487d8eeeaca3b808 | |
parent | 8e3b6bcc5b82b270f8d310865f14f2b0405eddd7 (diff) | |
download | devtools-93306718252d3f7ae9722d2f8b059a18c8a65b22.tar.xz |
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.
-rw-r--r-- | src/archrelease.in | 3 |
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 |