Skip to content

Commit 6b727c9

Browse files
Merge pull request #123 from timvaillancourt/pip_cache_flag_fix
Update pip cache dir flag (--download-cache was removed), fix for #119
2 parents 362447c + ed287e2 commit 6b727c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if [ -d ${srcdir} ]; then
8888
source ${venvdir}/bin/activate
8989

9090
[ ! -d ${pipdir} ] && mkdir -p ${pipdir}
91-
${venvdir}/bin/python2.7 ${venvdir}/bin/pip install --download-cache=${pipdir} pex requests
91+
${venvdir}/bin/python2.7 ${venvdir}/bin/pip install --cache-dir=${pipdir} pex requests
9292
if [ $? -gt 0 ]; then
9393
echo "Failed to install pex utility for building!"
9494
exit 1

0 commit comments

Comments
 (0)