Skip to content

Commit

Permalink
Further address linter errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Nov 6, 2023
1 parent da94928 commit b2236e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tooling/release_download_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ if [ "$SKIP_DOWNLOADING" = "false" ]; then
if echo "$TAG" | grep ea-beta; then
FILTER="ea_${MAJOR_VERSION}"
else
FILTER=$(echo "$TAG" | sed 's/+/%2B/g')
FILTER=${TAG//+/%2B}
fi

# Parse the releases list for the one we want and download everything in it
Expand Down Expand Up @@ -353,7 +353,7 @@ case "${CYCLONEDX_OS}-${CYCLONEDX_ARCH}" in
esac

CYCLONEDX_TOOL=""
if [ ! -z "${CYCLONEDX_CHECKSUM}" ]; then
if [ -n "${CYCLONEDX_CHECKSUM}" ]; then
print_verbose "IVT : Downloading CycloneDX validation tool"

CYCLONEDX_TOOL="cyclonedx-${CYCLONEDX_OS}-${CYCLONEDX_ARCH}${CYCLONEDX_SUFFIX}"
Expand Down

0 comments on commit b2236e3

Please sign in to comment.