penchant/script/hooks/commit-msg

16 lines
234 B
Plaintext
Raw Normal View History

2012-04-20 15:12:56 +00:00
#!/bin/bash
msg=$(cat $1)
2012-07-24 14:48:11 +00:00
# wtf mac os x lion
if [ ! -z "$MY_RUBY_HOME" ]; then
PATH="$MY_RUBY_HOME/bin:$PATH"
fi
2012-04-20 15:12:56 +00:00
if [[ "${msg}" != *"[ci skip]"* ]]; then
2012-07-24 14:48:11 +00:00
bundle exec rake --trace
2012-04-20 15:12:56 +00:00
R=$?
if [ $R -ne 0 ]; then exit $R; fi
fi