Skip to content
Snippets Groups Projects
Commit f1c4efb4 authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

distribute warning

parent 5a979874
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,21 @@ scipy-included() { ...@@ -18,10 +18,21 @@ scipy-included() {
fi fi
} }
distribute-included() {
if grep -qi 'Running setup.py install for distribute' "$WARNINGS_LOG"; then
puts-warn "Hello! Your requirements.txt file contains the distribute package."
puts-warn "This library is automatically installed by Heroku and shouldn't be in"
puts-warn "Your requirements.txt file. This can cause unexpected behavior."
puts-warn "-- Much Love, Heroku."
fi
}
show-warnings() { show-warnings() {
pylibmc-missing pylibmc-missing
scipy-included scipy-included
distribute-included
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment