From 95735ada9adbc3eb35b733c0c22565de158166f9 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 21 Jan 2026 12:15:20 +0100 Subject: [PATCH] refactor: clean-up build script warnings --- contrib/make_nightly_build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/make_nightly_build b/contrib/make_nightly_build index e2e8e4d..95a9c4d 100755 --- a/contrib/make_nightly_build +++ b/contrib/make_nightly_build @@ -157,19 +157,19 @@ if [ -z "$NO_FLOWCONTROL" ]; then ASSETS="$ASSETS --asset $DESTDIR/flow-${VERSION}-source.zip.sha256" echo uploading to git.flow-control.dev tea releases create --login flow-control --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" \ - $ASSETS + "$ASSETS" fi if [ -z "$NO_CODEBERG" ]; then - for a in $DESTDIR/*; do + for a in "$DESTDIR"/*; do ASSETS="$ASSETS --asset $a" done echo uploading to codeberg.org tea releases create --login codeberg --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" \ - $ASSETS + "$ASSETS" fi if [ -z "$NO_GITHUB" ]; then echo uploading to github.com - gh release create "$VERSION" --repo "$repo" --title "$title $VERSION" --notes-file "$release_notes" $DESTDIR/* + gh release create "$VERSION" --repo "$repo" --title "$title $VERSION" --notes-file "$release_notes" "$DESTDIR"/* fi