diff --git a/template/script/hooks/pre-commit b/template/script/hooks/pre-commit index fc9f07f..d5dc180 100755 --- a/template/script/hooks/pre-commit +++ b/template/script/hooks/pre-commit @@ -2,6 +2,14 @@ OLD_GIT_DIR=$GIT_DIR +if [ "$(penchant gemfile-env)" != "remote" ]; then + penchant gemfile remote +fi + +bundle exec rake +R=$? +if [ $R -ne 0 ]; then exit $R; fi + if [ "$(penchant gemfile-env)" != "remote deployment" ]; then unset GIT_DIR penchant gemfile remote --deployment @@ -9,7 +17,3 @@ if [ "$(penchant gemfile-env)" != "remote deployment" ]; then git add Gemfile* fi -bundle exec rake -R=$? -if [ $R -ne 0 ]; then exit $R; fi -