Skip to content

Commit

Permalink
Merge pull request #234 from vania-pooh/master
Browse files Browse the repository at this point in the history
Fixed bool expr for regeneration
  • Loading branch information
vania-pooh authored Dec 20, 2023
2 parents c0bdf1b + cf10f99 commit ec18864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for package in moon moon2 browser-ops license-ops boot; do
helm package "$package" --destination "$output_dir" --version "$version"
done
cd "$output_dir"
if [ -n "$regenerate" ] -a [ "$regenerate" = "true" ]; then
if [ -n "$regenerate" ] && [ "$regenerate" = "true" ]; then
regenerateDir="regenerate"
mkdir -p "$regenerateDir"
pushd "$regenerateDir"
Expand Down

0 comments on commit ec18864

Please sign in to comment.