Sha256: f065b1d316249e8a1a35089c10e42fcb6bd76e4b23da14b02d8331da8ca51573
Contents?: true
Size: 336 Bytes
Versions: 101
Compression:
Stored size: 336 Bytes
Contents
#!/bin/sh set -e if ! [ "$(git symbolic-ref --short HEAD)" = "master" ]; then printf "must be on master branch to run\n" >&2 exit 1 fi if ! git diff-index --quiet HEAD --; then printf "commit or stash your workspace changes\n" >&2 exit 1 fi if ! make test; then printf "test suite failed. not releasing\n" >&2 exit 1 fi
Version data entries
101 entries across 101 versions & 2 rubygems