Skip to content

Commit 170b3b5

Browse files
committed
Use posix-compatible syntax
1 parent b1a419d commit 170b3b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test-dirs/ocaml-flags.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Merlin handle it or add it to the list of ignored flags.
2020
> }
2121

2222
$ mconfig="../../src/kernel/mconfig.ml"
23-
$ while IFS= read -r flag; do
23+
$ echo "$OCAML_FLAGS" | while IFS= read -r flag; do
2424
> grep -q "\"$flag\"" "$mconfig" || \
2525
> is_intentionally_unhandled "$flag" || \
2626
> echo "Unhandled flag: $flag"
27-
> done <<< "$OCAML_FLAGS"
27+
> done
2828

2929
This list is printed to ensure that a change to the help text does not break the parsing
3030
logic.

0 commit comments

Comments
 (0)