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