From 61806b2308b5ab44e37d77f87f3969063073614e Mon Sep 17 00:00:00 2001 From: hikari-boulders Date: Mon, 8 Jul 2013 17:55:15 +0200 Subject: [PATCH] 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. --- scripts/create-dev-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-dev-env.sh b/scripts/create-dev-env.sh index 0816b72d21..56fd744972 100755 --- a/scripts/create-dev-env.sh +++ b/scripts/create-dev-env.sh @@ -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