Skip to content

Commit

Permalink
Merge pull request #1242 from t-woerner/fix_build_galaxy_release_sh_o…
Browse files Browse the repository at this point in the history
…ffline2

utils/build-galaxy-release.sh: Fix unary operator expected (v2)
  • Loading branch information
rjeffman authored May 27, 2024
2 parents 8779384 + 411f5f3 commit a1230ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/build-galaxy-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ find . -name "*~" -exec rm {} \;
find . -name "__py*__" -exec rm -rf {} \;


if [ "$offline" != "" ]; then
if [ "$offline" != "1" ]; then
echo "Creating CHANGELOG.rst..."
"$(dirname "$0")/changelog" --galaxy > CHANGELOG.rst
echo -e "\033[ACreating CHANGELOG.rst... \033[32;1mDONE\033[0m"
Expand Down

0 comments on commit a1230ca

Please sign in to comment.