2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-12-01 07:15:24 +00:00
bazel-lib/e2e/run_yq_symlinked_bin.sh

13 lines
212 B
Bash
Raw Normal View History

#!/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