Skip to content

Commit

Permalink
Correct setup check for pipenv (copy-paste fail)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdubz committed Nov 3, 2021
1 parent e9af07a commit 0a1b728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .sandstorm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ apt-get install -y nginx uwsgi uwsgi-plugin-python3 python3-pip python3-venv sql
python3 -m pip install --user pipx
python3 -m pipx ensurepath
source ~/.profile
if ! [ -x "$(command -v git)" ]; then
pipx install --ignore-installed pipenv
if ! [ -x "$(command -v pipenv)" ]; then
pipx install pipenv
fi

# Disable nginx (controlled by `launcher.sh`).
Expand Down

0 comments on commit 0a1b728

Please sign in to comment.