Skip to content

Commit

Permalink
More shellcheck fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sandervankasteel committed Oct 30, 2024
1 parent 32aed2e commit 792c907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TAG_NAME=$(curl -fsL \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/music-assistant/companion/releases | jq '.[0].tag_name')

export MUSIC_COMPANION_VERSION=$(echo "$TAG_NAME" | cut -d"v" -f 2 | cut -d"\"" -f 1)
export MUSIC_COMPANION_VERSION=$(echo "${TAG_NAME}" | cut -d"v" -f 2 | cut -d"\"" -f 1)

Check failure on line 9 in check_release.sh

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Declare and assign separately to avoid masking return values.

for i in "${RELEASES[@]}"
do
Expand Down

0 comments on commit 792c907

Please sign in to comment.