Merge pull request #86 from manojlds/master

Fixing the compile hook scripts paths
This commit is contained in:
Kenneth Reitz
2013-04-10 07:54:51 -07:00
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
if [ -f $BIN_DIR/post_compile ]; then
if [ -f bin/post_compile ]; then
echo "-----> Running post-compile hook"
chmod +x $BIN_DIR/post_compile
$BIN_DIR/post_compile
chmod +x bin/post_compile
bin/post_compile
fi
+3 -3
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
if [ -f $BIN_DIR/pre_compile ]; then
if [ -f bin/pre_compile ]; then
echo "-----> Running pre-compile hook"
chmod +x $BIN_DIR/pre_compile
$BIN_DIR/pre_compile
chmod +x bin/pre_compile
bin/pre_compile
fi