diff options
author | EuAndreh <eu@euandre.org> | 2021-07-23 14:31:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-23 15:03:08 -0300 |
commit | 4fd31bb99f7037f3dbd86b45f62181941371c270 (patch) | |
tree | 5fcd8791a1d37fe6b96d749ceb72eadd047cb3f5 /aux/workflow/assert-readme.sh | |
parent | aux/workflow/sign-tarballs.sh: Fix attaching signatures (diff) | |
download | git-permalink-4fd31bb99f7037f3dbd86b45f62181941371c270.tar.gz git-permalink-4fd31bb99f7037f3dbd86b45f62181941371c270.tar.xz |
Use tar.xz over tar.gz
git grep -lF tar.gz | xargs sed -i 's/tar\.gz/tar.xz/g'
Diffstat (limited to 'aux/workflow/assert-readme.sh')
-rwxr-xr-x | aux/workflow/assert-readme.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/assert-readme.sh b/aux/workflow/assert-readme.sh index 843fd86..333a753 100755 --- a/aux/workflow/assert-readme.sh +++ b/aux/workflow/assert-readme.sh @@ -63,7 +63,7 @@ RELEASES_LIST="$(mkstemp)" add_release() { DATE="$1" VVERSION="$2" - echo "- [$VVERSION](https://git.euandreh.xyz/$PROJECT/commit/?id=$VVERSION) [$PROJECT-$VVERSION.tar.gz](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$VVERSION.tar.gz) ([sig](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$VVERSION.tar.gz.asc)) - $DATE" >> "$RELEASES_LIST" + echo "- [$VVERSION](https://git.euandreh.xyz/$PROJECT/commit/?id=$VVERSION) [$PROJECT-$VVERSION.tar.xz](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$VVERSION.tar.xz) ([sig](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$VVERSION.tar.xz.asc)) - $DATE" >> "$RELEASES_LIST" } for VVERSION in $(git tag); do |