Skip to content

Commit

Permalink
Remove "exit 1", as discussed in #12.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepurvis committed Feb 16, 2016
1 parent feb2e90 commit c344dd7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ do_install()
echo
echo " /Library/Python/2.7/site-packages/"
echo
echo "To proceed, please uninstall these packages:"
echo "If you have problems, please uninstall these packages:"
echo
echo " for i in $( pip freeze ); do sudo pip uninstall -y $i; done"
exit 1
echo
echo "Then delete the build directory and start over again from scratch."
fi

# Check for root-owned stuff in /usr/local
Expand Down

1 comment on commit c344dd7

@angerhang
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Much better. Thanks.

Please sign in to comment.