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 b1a419d commit 170b3b5Copy full SHA for 170b3b5
tests/test-dirs/ocaml-flags.t
@@ -20,11 +20,11 @@ Merlin handle it or add it to the list of ignored flags.
20
> }
21
22
$ mconfig="../../src/kernel/mconfig.ml"
23
- $ while IFS= read -r flag; do
+ $ echo "$OCAML_FLAGS" | while IFS= read -r flag; do
24
> grep -q "\"$flag\"" "$mconfig" || \
25
> is_intentionally_unhandled "$flag" || \
26
> echo "Unhandled flag: $flag"
27
- > done <<< "$OCAML_FLAGS"
+ > done
28
29
This list is printed to ensure that a change to the help text does not break the parsing
30
logic.
0 commit comments