Skip to content

Commit fcd1c89

Browse files
committed
pass DJANGO_REQUIREMENTS variable to provision.sh
1 parent 9cea0a5 commit fcd1c89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

provision.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ DB_USER=$3
66
DB_PASSWORD=$4
77
TEST_DB_NAME=$5
88
DJANGO_SETTINGS=$6
9+
DJANGO_REQUIREMENTS=$7
910

1011
#Updating and instaling dependencies
1112
sudo apt-get -y update
@@ -120,4 +121,4 @@ fi
120121
cd /vagrant
121122
python -m virtualenv venv
122123
source venv/bin/activate
123-
pip install -r requirements.txt
124+
pip install -r $DJANGO_REQUIREMENTS

0 commit comments

Comments
 (0)