diff options
author | EuAndreh <eu@euandre.org> | 2021-02-27 23:38:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-27 23:38:16 -0300 |
commit | 37546bb15b8d1deabff0db658e869c604ff0ef46 (patch) | |
tree | 9d0ca1f69d26bd2a13ff64e3ddd7d93b0d77e833 | |
parent | Add aux/workflow/sign-tarballs.sh (diff) | |
download | remembering-37546bb15b8d1deabff0db658e869c604ff0ef46.tar.gz remembering-37546bb15b8d1deabff0db658e869c604ff0ef46.tar.xz |
README.sh: Reverse the list of tags
-rwxr-xr-x | aux/workflow/README.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/README.sh b/aux/workflow/README.sh index c14fe3b..e30344f 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 |