Sha256: 3f3b755ca22548c9019687930d753c3588350b4308a08e6663d447218267047d

Contents?: true

Size: 244 Bytes

Versions: 12

Compression:

Stored size: 244 Bytes

Contents

#!/bin/bash

msg=$(cat $1)

OLD_GIT_DIR=$GIT_DIR

if [[ "${msg}" != *"[ci skip]"* ]]; then
  if [ "$(penchant gemfile-env)" != "remote" ]; then
    penchant gemfile remote
  fi

  bundle exec rake
  R=$?
  if [ $R -ne 0 ]; then exit $R; fi
fi

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
penchant-0.2.12 script/hooks/commit-msg
penchant-0.2.11 script/hooks/commit-msg
penchant-0.2.10 script/hooks/commit-msg
penchant-0.2.9 script/hooks/commit-msg
penchant-0.2.8.1 script/hooks/commit-msg
penchant-0.2.8 script/hooks/commit-msg
penchant-0.2.6 script/hooks/commit-msg
penchant-0.2.5 script/hooks/commit-msg
penchant-0.2.4 script/hooks/commit-msg
penchant-0.2.3 script/hooks/commit-msg
penchant-0.2.2 script/hooks/commit-msg
penchant-0.2.1 script/hooks/commit-msg