aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/assert-changelog.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-06-11 23:37:59 -0300
committerEuAndreh <eu@euandre.org>2021-06-11 23:37:59 -0300
commitab3ad8fca4ec645854a54a50de4ee21c8fd72978 (patch)
treed8910a95004c59c11a7f557379b0eb35284ea5ac /aux/workflow/assert-changelog.sh
parentservers/nixvps/configuration.nix: Use subfolders of the same domain over subd... (diff)
downloadtoph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.gz
toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.xz
aux/: Update files
Diffstat (limited to 'aux/workflow/assert-changelog.sh')
-rwxr-xr-xaux/workflow/assert-changelog.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/aux/workflow/assert-changelog.sh b/aux/workflow/assert-changelog.sh
index d39f527..8e81f1f 100755
--- a/aux/workflow/assert-changelog.sh
+++ b/aux/workflow/assert-changelog.sh
@@ -4,11 +4,11 @@ set -eu
PROJECT="$1"
for VVERSION in $(git tag); do
- VERSION="${VVERSION#v}"
- DATE="$(git log -1 --format=%cd --date=short "$VVERSION")"
- CHANGELOG_ENTRY="# [$VERSION](https://git.euandreh.xyz/$PROJECT/commit/?id=$VVERSION) - $DATE"
- if ! grep -qF "$CHANGELOG_ENTRY" CHANGELOG.md; then
- echo "Missing '$CHANGELOG_ENTRY' entry from CHANGELOG.md" >&2
- exit 1
- fi
+ VERSION="${VVERSION#v}"
+ DATE="$(git log -1 --format=%cd --date=short "$VVERSION")"
+ CHANGELOG_ENTRY="# [$VERSION](https://git.euandreh.xyz/$PROJECT/commit/?id=$VVERSION) - $DATE"
+ if ! grep -qF "$CHANGELOG_ENTRY" CHANGELOG.md; then
+ echo "Missing '$CHANGELOG_ENTRY' entry from CHANGELOG.md" >&2
+ exit 1
+ fi
done