Skip to content

Commit

Permalink
Remove -d switch to use setuptools instead of distribute now that t…
Browse files Browse the repository at this point in the history
…hey are merged and using the switch caused bootstrap to fail.
  • Loading branch information
fschulze committed Sep 10, 2013
1 parent 579da59 commit 0f8d8cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ else
fi
if echo $PYTHON_VERSION | grep -q " 2.4"; then
echo $PYTHON $PYTHON_VERSION 2.4
$PYTHON bootstrap.py -d
$PYTHON bootstrap.py
./bin/buildout buildout:parts=test versions:zc.buildout=1.7.1
elif echo $PYTHON_VERSION | grep -q " 2.5"; then
echo $PYTHON $PYTHON_VERSION 2.5
$PYTHON bootstrap.py -d
$PYTHON bootstrap.py
./bin/buildout buildout:parts=test versions:zc.buildout=1.7.1
elif echo $PYTHON_VERSION | grep -q " 2."; then
echo $PYTHON $PYTHON_VERSION 2.x
$PYTHON bootstrap.py -d
$PYTHON bootstrap.py
./bin/buildout buildout:parts=test
else
echo $PYTHON $PYTHON_VERSION 3.x
Expand Down

0 comments on commit 0f8d8cf

Please sign in to comment.