jasmine-headless-webkit/script/hooks/pre-commit

16 lines
255 B
Plaintext
Raw Permalink Normal View History

2011-08-23 22:54:23 +00:00
#!/bin/bash
OLD_GIT_DIR=$GIT_DIR
if [ "$(penchant gemfile-env)" != "remote deployment" ]; then
2011-08-23 22:54:23 +00:00
unset GIT_DIR
penchant gemfile remote --deployment
2011-08-23 22:54:23 +00:00
GIT_DIR=$OLD_GIT_DIR
git add Gemfile*
fi
bundle exec rake
R=$?
if [ $R -ne 0 ]; then exit $R; fi