diff options
author | EuAndreh <eu@euandre.org> | 2021-06-17 03:29:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-17 03:29:50 -0300 |
commit | 0955acac2766a3b12849fb2da578d4ae2821a2a6 (patch) | |
tree | 4ac6606016d1f3ad6ed805d1e7356f672dbc40ce /aux/workflow/assert-changelog.sh | |
parent | doc/remembering.1: Add long options to the OPTIONS section (diff) | |
download | remembering-0955acac2766a3b12849fb2da578d4ae2821a2a6.tar.gz remembering-0955acac2766a3b12849fb2da578d4ae2821a2a6.tar.xz |
aux/workflow/assert-changelog.sh: Update
Diffstat (limited to 'aux/workflow/assert-changelog.sh')
-rwxr-xr-x | aux/workflow/assert-changelog.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/aux/workflow/assert-changelog.sh b/aux/workflow/assert-changelog.sh index dc8867f..61cd916 100755 --- a/aux/workflow/assert-changelog.sh +++ b/aux/workflow/assert-changelog.sh @@ -2,10 +2,12 @@ set -eu TLD="$(cat aux/tld.txt)" -PROJECT="$1" +PROJECT_UC="$1" +PROJECT="$2" +shift shift -HOMEPAGE_LINK="Changelog for [$PROJECT](https://$TLD/$PROJECT/)." +HOMEPAGE_LINK="Changelog for [$PROJECT_UC](https://$TLD/$PROJECT/)." if ! grep -qF "$HOMEPAGE_LINK" CHANGELOG.md; then echo "Missing link to homepage in CHANGELOG.md:" >&2 |