core/script/setup

11 lines
146 B
Bash
Executable File

#!/bin/sh
# Setups the repository.
# Stop on errors
set -e
cd "$(dirname "$0")/.."
git submodule init
script/bootstrap
python3 setup.py develop