mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f964209589 | |||
| 2e699d392e | |||
| 431ecee509 |
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -f $BIN_DIR/post_compile ]; then
|
if [ -f bin/post_compile ]; then
|
||||||
echo "-----> Running post-compile hook"
|
echo "-----> Running post-compile hook"
|
||||||
chmod +x $BIN_DIR/post_compile
|
chmod +x bin/post_compile
|
||||||
$BIN_DIR/post_compile
|
bin/post_compile
|
||||||
fi
|
fi
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -f $BIN_DIR/pre_compile ]; then
|
if [ -f bin/pre_compile ]; then
|
||||||
echo "-----> Running pre-compile hook"
|
echo "-----> Running pre-compile hook"
|
||||||
chmod +x $BIN_DIR/pre_compile
|
chmod +x bin/pre_compile
|
||||||
$BIN_DIR/pre_compile
|
bin/pre_compile
|
||||||
fi
|
fi
|
||||||
Reference in New Issue
Block a user