mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
13 lines
224 B
Plaintext
Executable File
13 lines
224 B
Plaintext
Executable File
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."
|
|
fi
|
|
}
|
|
|
|
show-warnings() {
|
|
pylibmc-missing
|
|
}
|
|
|