2017-01-02 22:04:09 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
# Setups the repository.
|
2015-09-17 00:35:26 -07:00
|
|
|
|
2017-01-02 22:04:09 +01:00
|
|
|
# Stop on errors
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
cd "$(dirname "$0")/.."
|
2015-09-17 00:35:26 -07:00
|
|
|
script/bootstrap
|
2017-05-24 15:31:51 -07:00
|
|
|
|
|
|
|
|
pip3 install -e .
|