2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-26 13:30:30 +00:00
bazel-lib/e2e/run_jq_symlinked_bin.sh

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