Vagrant: Run pip install from $PROJECT_DIR

Makes it easy to install submodules and packages that are checked in to git
pull/262/head
Karl Hobley 2019-11-01 09:28:37 +00:00 zatwierdzone przez GitHub
rodzic fecf702b65
commit d37c2e9eb1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -22,7 +22,7 @@ su - $DEV_USER -c "echo $PROJECT_DIR > $VIRTUALENV_DIR/.project"
su - $DEV_USER -c "$PIP install --upgrade pip"
# Install PIP requirements
su - $DEV_USER -c "$PIP install -r $PROJECT_DIR/requirements/base.txt"
su - $DEV_USER -c "cd $PROJECT_DIR && $PIP install -r requirements/base.txt"
# Set execute permissions on manage.py as they get lost if we build from a zip file