Add env to path during setup
This commit is contained in:
parent
5f410c35a9
commit
f872d766f9
1 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,13 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -ex
|
||||
set -e
|
||||
|
||||
PATH=${PWD}/env/bin:${PATH}
|
||||
|
||||
set -x
|
||||
|
||||
python -m venv env
|
||||
|
||||
env/bin/pip install -r dev-requirements.txt
|
||||
pip install -r dev-requirements.txt
|
||||
|
||||
ansible-galaxy install -r galaxy-requirements.yml
|
||||
|
|
Loading…
Reference in a new issue