diff --git a/bin/steps/hooks/post_compile b/bin/steps/hooks/post_compile index 636d639..a5f4c5a 100644 --- a/bin/steps/hooks/post_compile +++ b/bin/steps/hooks/post_compile @@ -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 \ No newline at end of file diff --git a/bin/steps/hooks/pre_compile b/bin/steps/hooks/pre_compile index a6d65a6..e5eeddf 100644 --- a/bin/steps/hooks/pre_compile +++ b/bin/steps/hooks/pre_compile @@ -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 \ No newline at end of file