Skip to content

Commit

Permalink
fix: Add additional success message (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 authored Apr 16, 2024
1 parent e83969e commit 2fcea11
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion actions/verify-hello-app/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ runs:
exit 1
fi
echo "$output" | grep -i "is true for this context"
# NOTE: The first 'is true' block is for legacy hello apps that haven't
# been updated to meet the Hello spec
# (https://github.com/launchdarkly/sdk-specs/tree/main/specs/EXAM-SDK-example/HELLO-hello-apps).
echo "$output" | grep -iE "is true for this context|feature flag evaluates to true"
if [ $? -ne 0 ]; then
echo "hello-app command did not produce the expected output"
Expand Down

0 comments on commit 2fcea11

Please sign in to comment.