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

Version Path
codeclimate-0.78.0 bin/validate-release
codeclimate-0.77.0 bin/validate-release
codeclimate-0.76.0 bin/validate-release
codeclimate-0.75.0 bin/validate-release
codeclimate-0.74.0 bin/validate-release
codeclimate-0.73.0 bin/validate-release
codeclimate-0.72.0 bin/validate-release
codeclimate-0.71.2 bin/validate-release
codeclimate-0.71.1 bin/validate-release
codeclimate-0.71.0 bin/validate-release
codeclimate-0.70.6 bin/validate-release
codeclimate-0.70.5 bin/validate-release
codeclimate-0.70.4 bin/validate-release
codeclimate-0.70.3 bin/validate-release
codeclimate-0.70.2 bin/validate-release
codeclimate-0.70.1 bin/validate-release
codeclimate-0.70.0 bin/validate-release
codeclimate-0.69.0 bin/validate-release
codeclimate-0.68.0 bin/validate-release
codeclimate-0.67.0 bin/validate-release