Commit fa690b91bc03c4be66fffe5d292a58aae5a1a7a0
1 parent
f95e67a6a2
Exists in
master
bash -u was too strict; switching to bash -xe
Showing 1 changed file with 1 additions and 2 deletions Inline Diff
setup.sh
View file @
fa690b9
#!/bin/bash -x | 1 | 1 | #!/bin/bash -xe | |
set -euo pipefail | 2 | |||
virtualenv venv | 3 | 2 | virtualenv venv | |
source venv/bin/activate | 4 | 3 | source venv/bin/activate | |
pip install -r requirements.txt | 5 | 4 | pip install -r requirements.txt | |
git submodule init | 6 | 5 | git submodule init | |
git submodule update | 7 | 6 | git submodule update | |
pip install -e django | 8 | 7 | pip install -e django | |