Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
Signed-off-by: Leandro Mendes <[email protected]>
  • Loading branch information
theflockers committed Dec 20, 2024
1 parent 611907f commit f617c9b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ spec:
fi
# shellcheck disable=SC2046
genericResult=$(jq -r '. |[.fbc_opt_in, .publish_index_image,.sign_index_image] |@csv' <<< $(params.genericResult))
if [ "$genericResult" != '"true","true","true"' ]; then
genericResult=$(jq -r \
'. |[.fbc_opt_in, .overwrite_fromindex_image, .publish_index_image,.sign_index_image] |@csv' \
<<< $(params.genericResult))
if [ "$genericResult" != '"true","true","true","true"' ]; then
echo "The stask did not save the correct values in genericResult result"
exit 1
fi
Expand Down

0 comments on commit f617c9b

Please sign in to comment.