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

7 lines
162 B
Bash

#!/usr/bin/env bash
if [ -f $BIN_DIR/pre_compile ]; then
echo "-----> Running pre-compile hook"
chmod +x $BIN_DIR/pre_compile
$BIN_DIR/pre_compile
fi