mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
13 lines
170 B
Plaintext
Executable File
13 lines
170 B
Plaintext
Executable File
shopt -s extglob
|
|
|
|
pylibmc-missing() {
|
|
puts-warn "pylibmc is missing."
|
|
echo 'pylibmc is missing (echo).'
|
|
}
|
|
|
|
show-warnings() {
|
|
echo "hey there!"
|
|
pylibmc-missing
|
|
}
|
|
|