We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e5c2c commit 65c98e0Copy full SHA for 65c98e0
bin/bazel
@@ -0,0 +1,10 @@
1
+#!/usr/bin/bash
2
+
3
+set -euo pipefail
4
5
+bazelisk_bin=$(which bazelisk)
6
+if [[ -e ./bazelw ]]; then
7
+ exec ./bazelw "$@"
8
+elif command -v "$bazelisk_bin" >/dev/null; then
9
+ exec "$bazelisk_bin" "$@"
10
+fi
0 commit comments