bazel-lib/e2e/run_yq_symlinked_bin.sh

12 lines
250 B
Bash
Executable File

#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
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