Commit f9642095 authored by Kenneth Reitz's avatar Kenneth Reitz

Merge remote-tracking branch 'origin/master'

parents 90696215 2e699d39
#!/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
\ No newline at end of file
#!/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
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment