aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-27 23:37:56 -0300
committerEuAndreh <eu@euandre.org>2021-02-27 23:37:56 -0300
commitf196e0f2a6e160618d95de25c92221c533e9c079 (patch)
tree1595b14ebd935f290a1a73ab0be5ed9561289dfc /aux/workflow
parentfake-symlinks: Add aux/workflow/sign-tarballs.sh (diff)
downloaddotfiles-f196e0f2a6e160618d95de25c92221c533e9c079.tar.gz
dotfiles-f196e0f2a6e160618d95de25c92221c533e9c079.tar.xz
fake-symlinks: README.sh: Reverse list of tags
Diffstat (limited to 'aux/workflow')
-rwxr-xr-xaux/workflow/README.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/README.sh b/aux/workflow/README.sh
index c14fe3b6..e30344fb 100755
--- a/aux/workflow/README.sh
+++ b/aux/workflow/README.sh
@@ -8,7 +8,7 @@ PROJECT="$2"
MAILING_LIST="$3"
RELEASES_LIST="$(mktemp)"
-for version in $(git tag); do
+for version in $(git tag | perl -e 'print reverse <>'); do
echo "- version [$version](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz) ([sig](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz.asc)), released in $(git log -1 --format=%cd --date=short "$version")" >> "$RELEASES_LIST"
done