Skip to content

Commit

Permalink
Merge pull request #1202 from Lukasa/track-down-crypto-problems
Browse files Browse the repository at this point in the history
Better debugging output.
  • Loading branch information
mhils committed Jun 3, 2016
2 parents 7191906 + 010e3bb commit a2d1371
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dev.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/sh
set -e
set -x

PYVERSION=$1
VENV="venv$1"
Expand All @@ -8,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."
Expand Down

0 comments on commit a2d1371

Please sign in to comment.