Skip to content

Commit

Permalink
Fix detection of VERSION variable in package script
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisjbell committed Oct 8, 2024
1 parent 796c393 commit 216d0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/package
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ else
echo "Using local checked out copy on stratos-ui"
fi

if [[ -z ${VERSION:-""} ]] ; then
if [[ -n ${VERSION:-""} ]] ; then
export stratos_version="${VERSION}" # Will be tagged on publish in Concourse
fi

Expand Down

0 comments on commit 216d0f5

Please sign in to comment.