Skip to content

Commit

Permalink
quick readme fix for checking output
Browse files Browse the repository at this point in the history
  • Loading branch information
NorseGaud committed Jun 16, 2020
1 parent 6188bd2 commit cc5d265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ Usage:
- name: Check for output
run: |
PULL_TEST_STD="${{ steps.pull-test-2.outputs.std }}"
printf "pull test std ========================\n${{ steps.pull-test-2.outputs.std }}"
[[ ! -z "$(echo $PULL_TEST_STD | head -n 1)" ]] || exit 50
[[ ! -z "$(echo $PULL_TEST_STD | grep 'Lock file /tmp/registry-pull-lock-10.15.4 found')" ]] || exit 51
printf "pull test std ========================\n$PULL_TEST_STD"
[[ ! -z "$(echo \"$PULL_TEST_STD\" | head -n 1)" ]] || exit 50
[[ ! -z "$(echo \"$PULL_TEST_STD\" | grep 'Lock file /tmp/registry-pull-lock-10.15.4 found')" ]] || exit 51
true
```

Expand Down

0 comments on commit cc5d265

Please sign in to comment.