We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c8bb2 commit 81f7904Copy full SHA for 81f7904
build.sh
@@ -675,11 +675,11 @@ function runWattsi {
675
fi
676
curl "${CURL_ARGS[@]}"
677
678
- # read exit code from the Wattsi-Exit-Code header and assume failure if not found
+ # read exit code from the Exit-Code header and assume failure if not found
679
WATTSI_RESULT=1
680
while IFS=":" read -r NAME VALUE; do
681
shopt -s nocasematch
682
- if [[ $NAME == "Wattsi-Exit-Code" ]]; then
+ if [[ $NAME == "Exit-Code" ]]; then
683
WATTSI_RESULT=$(echo "$VALUE" | tr -d ' \r\n')
684
break
685
0 commit comments