Skip to content

Commit

Permalink
fixup!chore(github-action): build cnb image - fail late mode - write …
Browse files Browse the repository at this point in the history
…to stderr
  • Loading branch information
o-orand committed Oct 1, 2024
1 parent 93650ed commit 5d6f0cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-using-cnb-buildpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,16 +122,16 @@ jobs:
type="$1"
cmd="$2"
status=0
echo "$type using > $cmd <"
echo "$type using > $cmd <" 1>&2
if $cmd;then
echo ""
echo "$type failed"
echo "" 1>&2
echo "$type failed" 1>&2
status=1
else
echo ""
echo "$type successful"
echo "" 1>&2
echo "$type successful" 1>&2
fi
echo "check_service - status: $status"
echo "check_service - status: $status" 1>&2
return $status
}
export APP="http://127.0.0.1:8080"
Expand Down

0 comments on commit 5d6f0cd

Please sign in to comment.