Skip to content

Instantly share code, notes, and snippets.

@steeve
Last active June 3, 2019 00:54
Show Gist options
  • Save steeve/f7e5743fe972abff063b318b43dcd94e to your computer and use it in GitHub Desktop.
Save steeve/f7e5743fe972abff063b318b43dcd94e to your computer and use it in GitHub Desktop.
#!/bin/bash
set -eu
VERSION=0.0.5
case "$OSTYPE" in
darwin*) os="darwin" ;;
linux*) os="linux" ;;
esac
mkdir -p "${HOME}/bin"
curl -L -o "${HOME}/bin/bazel" "https://github.com/bazelbuild/bazelisk/releases/download/v${VERSION}/bazelisk-${os}-amd64"
chmod +x "${HOME}/bin/bazel"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment