Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit dda1afc

Browse files
committed
chore: try to fix meta test script on macOS
1 parent d8939b2 commit dda1afc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: test/meta/test.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -exo pipefail
33

44
LAKE=${LAKE:-../../build/bin/lake}
55

6-
$LAKE update |& grep -m2 -E "lorem|ipsum"
7-
$LAKE update -Kbaz |& grep -m3 -E "lorem|ipsum|baz"
8-
$LAKE update -Kenv=foo |& grep -m4 -E "lorem|ipsum|foo|1"
9-
$LAKE update -Kenv=bar |& grep -m4 -E "lorem|ipsum|bar|2"
6+
$LAKE update 2>&1 | grep -m2 -E "lorem|ipsum"
7+
$LAKE update -Kbaz 2>&1 | grep -m3 -E "lorem|ipsum|baz"
8+
$LAKE update -Kenv=foo 2>&1 | grep -m4 -E "lorem|ipsum|foo|1"
9+
$LAKE update -Kenv=bar 2>&1 | grep -m4 -E "lorem|ipsum|bar|2"

0 commit comments

Comments
 (0)