Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Apr 23, 2024
1 parent a27f6c9 commit 93ca382
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 @@ -141,7 +141,7 @@ for PACKAGE in $BUILD_ORDER; do
ON_PUSH_BUILD=$(apt-cache policy $FUTURE_DEB_NAME | grep "Candidate" | grep "on.push.build" | wc -l)

NEW_COMMIT=false
if [[ "$GIT_SHA_MATCHES" == "0" ]] || [[ "$ON_PUSH_BUILD" == "0" ]]; then
if [[ "$GIT_SHA_MATCHES" == "0" ]] || [ "$ON_PUSH_BUILD" -ge "1" ]; then
echo "$0: new commit detected, going to compile"
NEW_COMMIT=true
fi
Expand Down

0 comments on commit 93ca382

Please sign in to comment.