Files
heroku-buildpack-python/bin/steps/hooks/post_compile
T
2013-01-11 10:54:05 +00:00

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