update create-dev-env.sh, change one small character

in line 470, changed "curl -O" to "curl -OL" such that the scripts runs without problems.
This commit is contained in:
hikari-boulders
2013-07-08 17:55:15 +02:00
parent bc0e590842
commit 61806b2308

View File

@@ -467,7 +467,7 @@ DISTRIBUTE_VER="0.6.28"
output "Building Distribute"
SITE_PACKAGES="$HOME/.virtualenvs/edx-platform/lib/python2.7/site-packages"
cd "$SITE_PACKAGES"
curl -O http://pypi.python.org/packages/source/d/distribute/distribute-${DISTRIBUTE_VER}.tar.gz
curl -OL http://pypi.python.org/packages/source/d/distribute/distribute-${DISTRIBUTE_VER}.tar.gz
tar -xzvf distribute-${DISTRIBUTE_VER}.tar.gz
cd distribute-${DISTRIBUTE_VER}
python setup.py install