From a32ca255207e83b6c21db10e3184b09c29a5f1ef Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 10 Nov 2015 12:58:51 -0500 Subject: [PATCH] pretty error message --- bin/warnings | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/warnings b/bin/warnings index 0a8aad0..0fa72ba 100755 --- a/bin/warnings +++ b/bin/warnings @@ -2,7 +2,9 @@ shopt -s extglob pylibmc-missing() { if grep -qi 'fatal error: libmemcached/memcached.h: No such file or directory' "$WARNINGS_LOG"; then - puts-warn "pylibmc is missing." + puts-warn "Hello! There was a problem with your build related to libmemcache." + puts-warn "The Python library 'pylibmc' must be explicitly specified in 'requirements.txt' in order to build correctly." + puts-warn "Once you do that, everything should work as expected. -- Much Love, Heroku." fi }