mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-28 21:33:48 +00:00
13 lines
212 B
Bash
Executable file
13 lines
212 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
case "$(uname -s)" in
|
|
CYGWIN*|MINGW32*|MSYS*|MINGW*)
|
|
bazel run @yq//:yq.exe -- --null-input .a=5
|
|
;;
|
|
|
|
*)
|
|
bazel run @yq//:yq -- --null-input .a=5
|
|
;;
|
|
esac |