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