diff --git a/bin/steps/hooks/post_compile b/bin/steps/hooks/post_compile index 122e8af..1b22b25 100644 --- a/bin/steps/hooks/post_compile +++ b/bin/steps/hooks/post_compile @@ -1,5 +1,6 @@ #!/usr/bin/env bash if [ -f bin/post_compile ]; then - source bin/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 a73d6bf..bc18807 100644 --- a/bin/steps/hooks/pre_compile +++ b/bin/steps/hooks/pre_compile @@ -1,5 +1,6 @@ #!/usr/bin/env bash if [ -f bin/pre_compile ]; then - source bin/pre_compile + chmod +x bin/pre_compile + bin/pre_compile fi \ No newline at end of file