Skip to content

Commit

Permalink
pip workaround... again
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Mar 3, 2015
1 parent 7ed7a79 commit f00dfcd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion allsetups.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ if [ "$arg" = install ]; then
elif [ "$arg" = develop ]; then
# -e doesn't work with local paths before 6.0
pip install -U setuptools pip
CMD=""
for prog in $PROGRAMS; do
pip install -U -e $prog
CMD="$CMD -e $prog"
done
pip install -U $CMD
else
echo "Usage: $(basename "$0") <install|develop>" >&2
exit 1
Expand Down

0 comments on commit f00dfcd

Please sign in to comment.