mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
7 lines
147 B
Bash
7 lines
147 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f bin/pre_compile ]; then
|
|
echo "-----> Running pre-compile hook"
|
|
chmod +x bin/pre_compile
|
|
bin/pre_compile
|
|
fi |