From 54456517769a7639c9b6a8aba6094138a5bb14a9 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 23 Sep 2025 13:21:31 +0200 Subject: [PATCH] build: fix typo in nightly build release notes --- contrib/make_nightly_build | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/contrib/make_nightly_build b/contrib/make_nightly_build index e8932e4..d96063c 100755 --- a/contrib/make_nightly_build +++ b/contrib/make_nightly_build @@ -121,15 +121,17 @@ cd .. echo git log "${last_nightly_version}..HEAD" --pretty="format:neurocyte/$APPNAME@%h %s" echo + echo echo "contributors to this release:" - git shortlog -s -n "${last_nightly_version}..HEAD" + git shortlog -s -n "${last_nightly_version}..HEAD" | cut -b 8- + echo echo echo "also available at:" - echo "[git.flow-control.dev](https://git.flow-control.dev/neurocyte/flow-nightly/releases/tag/$VERSION)" + echo "[flow-control.dev](https://git.flow-control.dev/neurocyte/flow-nightly/releases/tag/$VERSION)" echo "[github.com](https://github.com/neurocyte/flow-nightly/releases/tag/$VERSION)" - echo "[flow-control.dev](https://codeberg.org/neurocyte/flow-nightly/releases/tag/$VERSION)" + echo "[codeberg.org](https://codeberg.org/neurocyte/flow-nightly/releases/tag/$VERSION)" } >"$release_notes" cat "$release_notes"