Skip to content

Commit

Permalink
build: fix: don't ignore kernel push failures (#208)
Browse files Browse the repository at this point in the history
#### build: fix: don't ignore kernel push failures

- forgot a `|| true` in there somehow
  • Loading branch information
jacobweinstock authored May 1, 2024
2 parents df70921 + c9c761f commit 04941d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bash/kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function kernel_build() {
# Push it to the OCI registry
if [[ "${DO_PUSH:-"no"}" == "yes" ]]; then
log info "Kernel built; pushing to ${kernel_oci_image}"
docker push "${kernel_oci_image}" || true
docker push "${kernel_oci_image}"
else
log info "DO_PUSH not 'yes', not pushing."
fi
Expand Down

0 comments on commit 04941d2

Please sign in to comment.