blob: d8b6781775ba557e3e358f858f4c5859ca699639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
set -e
BAZELISK_VERSION=v1.10.1
wget -O /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/$BAZELISK_VERSION/bazelisk-linux-amd64
chmod +x /usr/local/bin/bazel
|