mirror of
https://github.com/github/semantic.git
synced 2024-12-11 20:44:37 +03:00
9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e pipefail
|
|
|
|
echo "Installing Bazel..."
|
|
brew install bazel
|
|
mkdir -p .bazel-cache/bazel-disk || true
|
|
mkdir .bazel-cache/bazel-repo || true
|