diff options
author | EuAndreh <eu@euandre.org> | 2021-10-11 10:37:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-10-11 10:40:34 -0300 |
commit | eaece88913d73661960a055a5c10bdeaa6a19f99 (patch) | |
tree | 3f4c078e225c99766cfb963f825fa5956ac0ee4f /aux/workflow/assert-readme.sh | |
parent | styles.css: Simplify margin, remove "optimizeLegibility" (diff) | |
download | euandre.org-eaece88913d73661960a055a5c10bdeaa6a19f99.tar.gz euandre.org-eaece88913d73661960a055a5c10bdeaa6a19f99.tar.xz |
Update link to Git repositories
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/assert-readme.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/aux/workflow/assert-readme.sh b/aux/workflow/assert-readme.sh index 1e49bfb..7afeb4c 100755 --- a/aux/workflow/assert-readme.sh +++ b/aux/workflow/assert-readme.sh @@ -55,7 +55,7 @@ Send contributions to the [mailing list] via ## Links - [homepage](https://$TLD/$PROJECT/en/) -- [source code](https://git.euandreh.xyz/$PROJECT/) +- [source code](https://euandreh.xyz/$PROJECT.git/) - [bug tracking](https://$TLD/$PROJECT/TODOs.html) - [mailing list] - [CI logs](https://$TLD/$PROJECT/ci.html) @@ -68,7 +68,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://euandreh.xyz/$PROJECT.git/commit/?id=$VVERSION) [$PROJECT-$VVERSION.tar.gz](https://euandreh.xyz/$PROJECT.git/snapshot/$PROJECT-$VVERSION.tar.gz) ([sig](https://euandreh.xyz/$PROJECT.git/snapshot/$PROJECT-$VVERSION.tar.gz.asc)) - $DATE" >> "$RELEASES_LIST" } for VVERSION in $(git tag); do @@ -98,7 +98,7 @@ The code is licensed under [GNU Affero General Public License v3.0 or later][AGPL-3.0-or-later] (AGPL-3.0-or-later). -[AGPL-3.0-or-later]: https://git.euandreh.xyz/$PROJECT/tree/COPYING +[AGPL-3.0-or-later]: https://euandreh.xyz/.git$PROJECT/tree/COPYING EOF if ! tail -n "$(wc -l < "$EXPECTED")" README.md | diff - "$EXPECTED"; then |