From f9b83a4e95ed37ba24204a2c8b06c7c8221789e7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 May 2012 03:21:46 -0400 Subject: [PATCH] chmod --- bin/steps/hooks/post_compile | 3 ++- bin/steps/hooks/pre_compile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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