Skip to content

Commit

Permalink
Merge pull request #277 from ehuss/fix-diagnostic-grep
Browse files Browse the repository at this point in the history
Fix script example for diagnostic grepping
  • Loading branch information
oli-obk committed May 6, 2023
2 parents 7bddf3a + cf8e513 commit 4d81952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide/src/examples/diagnostics.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ echo "$OUTPUT"
# This indicates a regression when the text "non-ASCII" is in the output.
#
# If the regression is when the text is *not* in the output, remove the `!` prefix.
! grep "non-ASCII" "$OUTPUT"
! echo "$OUTPUT" | grep "non-ASCII"
```

Then run something like:
Expand Down

0 comments on commit 4d81952

Please sign in to comment.