mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-26 13:30:30 +00:00
15 lines
214 B
Bash
Executable file
15 lines
214 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
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
|
|
|