forked from hswaw/hscloud
14 lines
203 B
Bash
Executable file
14 lines
203 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e -o pipefail
|
|
|
|
if [ -z "$hscloud_root" ]; then
|
|
echo 2>&1 "Please first source env.sh"
|
|
exit 1
|
|
fi
|
|
|
|
cd "${hscloud_root}"
|
|
|
|
bazel build //tools/...
|
|
|
|
cluster/tools/install.sh
|