aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdev.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev.sh b/dev.sh
index b4e1156e..889ffecb 100755
--- a/dev.sh
+++ b/dev.sh
@@ -9,8 +9,8 @@ echo "Creating dev environment in $VENV using Python $PYVERSION"
python$PYVERSION -m virtualenv "$VENV" --always-copy
. "$VENV/bin/activate"
-pip$PYVERSION install -q -U pip setuptools
-pip$PYVERSION install -q -r requirements.txt
+pip$PYVERSION install -U pip setuptools
+pip$PYVERSION install -r requirements.txt
echo ""
echo "* Virtualenv created in $VENV and all dependencies installed."