Skip to content

Commit

Permalink
BLD: Pass args to ordered_pip through to pip
Browse files Browse the repository at this point in the history
This way, we can specify an index-url, for example.
  • Loading branch information
richafrank committed Jun 22, 2015
1 parent ed8b3b6 commit 927a6b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/ordered_pip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ a=0
while read line
do
if [[ -n "$line" && "$line" != \#* ]] ; then
pip install $line
pip install $line "${@:2}"
((a = a + 1))
fi
done < $1
Expand Down

0 comments on commit 927a6b7

Please sign in to comment.