From 179b6e3525286fe17bcacdd421b51ff96394806b Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Thu, 2 Jun 2016 18:42:15 -0700 Subject: [PATCH 1/2] Better debugging output. --- dev.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dev.sh b/dev.sh index 111f09bc3..b4e1156e8 100755 --- a/dev.sh +++ b/dev.sh @@ -1,5 +1,6 @@ #!/bin/sh set -e +set -x PYVERSION=$1 VENV="venv$1" From 010e3bb39d5de1c645a496c947d2e892a95d87c3 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Thu, 2 Jun 2016 18:47:40 -0700 Subject: [PATCH 2/2] Quiet mode is a lie! --- dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev.sh b/dev.sh index b4e1156e8..889ffecbe 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."