fix: use proper comparison

This commit is contained in:
Michael Kriese 2026-01-21 12:28:26 +01:00
parent 7fdceaa4f8
commit ecdcd79de6
No known key found for this signature in database
GPG key ID: F8D7748549A5986A

View file

@ -84,7 +84,7 @@ upload_release() {
# It is expanded using "${assets[@]}" which preserves the separation of arguments and not split whitespace containing values.
# For reference, see https://github.com/koalaman/shellcheck/wiki/SC2086#exceptions
local assets=()
if ! "$SKIP_ASSETS"; then
if [ "$SKIP_ASSETS" == 'false' ]; then
for file in "$RELEASE_DIR"/*; do
assets=("${assets[@]}" -a "$file")
done