Drop `--system` from `pipenv install` in deploy_linux.sh

The `--system` flag is not necessary when deploying a development
environment on linux. It's preferable to install python dependencies in
venvs rather than on the system.
This commit is contained in:
Mike Salvatore 2021-04-26 10:42:34 -04:00
parent df67ba554e
commit d83fc2e914
1 changed files with 2 additions and 2 deletions

View File

@ -148,13 +148,13 @@ pipx install pipenv
log_message "Installing island requirements"
pushd $ISLAND_PATH
pipenv install --dev --system
pipenv install --dev
popd
log_message "Installing monkey requirements"
sudo apt-get install -y libffi-dev upx libssl-dev libc++1
pushd $INFECTION_MONKEY_DIR
pipenv install --dev --system
pipenv install --dev
popd
agents=${3:-true}