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 c208821 commit 9de4a7bCopy full SHA for 9de4a7b
.circleci/config.yml
@@ -49,11 +49,11 @@ jobs:
49
set +o pipefail
50
51
ERRS=$(protolock status --plugins=plugin-sample-error,plugin-sample-error | grep "some error" | wc -l)
52
- if [ "$ERRS" != 2 ]; then
+ if [ "$ERRS" != 4 ]; then # (4 = 2 * 2, since errors are now reported using 2 lines)
53
exit 1
54
fi
55
MOREERRS=$(protolock status --plugins=plugin-sample-error,plugin-sample-error,plugin-sample-error | grep "some error" | wc -l)
56
- if [ "$MOREERRS" != 3 ]; then
+ if [ "$MOREERRS" != 6 ]; then # (6 = 3 * 2, since errors are now reported using 2 lines)
57
58
59
- run:
0 commit comments