BLD: Pass args to ordered_pip through to pip

This way, we can specify an index-url, for example.
This commit is contained in:
Richard Frank
2015-06-22 14:54:44 -04:00
parent ed8b3b6c8c
commit c101e82399
+2 -1
View File
@@ -4,7 +4,8 @@ a=0
while read line
do
if [[ -n "$line" && "$line" != \#* ]] ; then
pip install $line
# forward to pip any args after the reqs filename
pip install $line "${@:2}"
((a = a + 1))
fi
done < $1