Update jq docs to show correct escaping
As seen here: 31e6c76b7d/lib/jq.bzl (L87)
The docs show the incorrect escaping sequence.
This commit is contained in:
parent
eb4c47f734
commit
c25dac2950
|
@ -91,7 +91,7 @@ jq(
|
||||||
"--raw-input",
|
"--raw-input",
|
||||||
"--slurp",
|
"--slurp",
|
||||||
],
|
],
|
||||||
filter = "{ deps: split("\n") | map(select(. | length > 0)) }",
|
filter = "{ deps: split(\"\\n\") | map(select(. | length > 0)) }",
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue