Files
core/script/setup
T

11 lines
146 B
Bash
Raw Normal View History

#!/bin/sh
# Setups the repository.
2015-09-17 00:35:26 -07:00
# Stop on errors
set -e
cd "$(dirname "$0")/.."
2015-09-17 00:35:26 -07:00
git submodule init
script/bootstrap
2015-09-17 23:55:47 -07:00
python3 setup.py develop