Skip to content

Commit

Permalink
Fix the check bundle versions check
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham committed Aug 17, 2023
1 parent 6d4e8ed commit 75521e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions releng/scripts/check_bundle_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ fi
logfile=baseline-compare-and-replace.log
echo "Running 'mvn verify -P baseline-compare-and-replace' to make sure all versions"
echo "have been appropriately incremented."
${MVN:-mvn} \


if ${MVN:-mvn} \
clean verify -B -V --fail-at-end \
-DskipDoc=true \
-DskipTests=true \
-P baseline-compare-and-replace \
-P api-baseline-check \
2>&1 | tee ${logfile}

if [ $? -eq 0 ]; then
2>&1 | tee ${logfile}; then
echo "SUCCESS - Maven check all versions have been bumped appropriately appears to have completed successfully"
echo "SUCCESS - Maven check all versions have been bumped appropriately appears to have completed successfully" >> ${logfile}
else
Expand Down

0 comments on commit 75521e0

Please sign in to comment.