10 lines
220 B
Bash
Executable file
10 lines
220 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex;
|
|
|
|
# A simple build script to run locally before pushing.
|
|
|
|
REPO_DIR=$( cd $(dirname ${BASH_SOURCE[0]})/..; pwd )
|
|
|
|
for TC in nightly stable beta; do
|
|
TC="${TC}" ${REPO_DIR}/bin/build_tc
|
|
done
|