blob: f094cff3d19e59e22bd1aecaebe43e3622ec09b2 [file] [log] [blame]
Ray Milkeyd83ef8e2018-11-09 11:57:01 -08001#!/bin/bash
2
3# exit on errors
4set -eu -o pipefail
5
Ray Milkey0042c8c2018-12-17 08:19:37 -08006BAZEL_VERSION="0.19.2"
Ray Milkeyd83ef8e2018-11-09 11:57:01 -08007
8if [ ${BAZEL_VERSION} != "none" ]
9then
10 echo Installing bazel version ${BAZEL_VERSION}
11 curl -L -o bazel.sh -s https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh
12else
13 echo Not installing bazel
14fi
15
Ray Milkey4cf12d62018-11-09 13:10:50 -080016chmod +x bazel.sh
17./bazel.sh --user
18