Sign in
pigweed
/
third_party
/
github
/
aspect-build
/
bazel-lib
/
383bbd589b46e2d55c54c2c28712fd379e3cf918
/
.
/
e2e
/
run_jq_symlinked_bin.sh
blob: ed748b37cb95b080010b2949551ccac8b888be02 [
file
]
#!/usr/bin/env bash
set
-
o errexit
-
o nounset
-
o pipefail
case
"$(uname -s)"
in
CYGWIN
*|
MINGW32
*|
MSYS
*|
MINGW
*)
bazel run
@jq
//:
jq
.
exe
--
--
null
-
input
.
a
=
5
;;
*)
bazel run
@jq
//:
jq
--
--
null
-
input
.
a
=
5
;;
esac