python: fix new url download + ensure we are following any redirection in the future. closes #85
This commit is contained in:
parent
8b4e2721fb
commit
12f233cedb
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
# download python and patch if they aren't there
|
# download python and patch if they aren't there
|
||||||
if [ ! -f $CACHEROOT/Python-$IOS_PYTHON_VERSION.tar.bz2 ]; then
|
if [ ! -f $CACHEROOT/Python-$IOS_PYTHON_VERSION.tar.bz2 ]; then
|
||||||
curl http://legacy.python.org/ftp//python/$IOS_PYTHON_VERSION/Python-$IOS_PYTHON_VERSION.tar.bz2 > $CACHEROOT/Python-$IOS_PYTHON_VERSION.tar.bz2
|
curl -L https://www.python.org/ftp//python/$IOS_PYTHON_VERSION/Python-$IOS_PYTHON_VERSION.tar.bz2 > $CACHEROOT/Python-$IOS_PYTHON_VERSION.tar.bz2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# get rid of old build
|
# get rid of old build
|
||||||
|
|
Loading…
Reference in a new issue