Sha256: c83365520d62ff7365535ee98c9593d57eda61524494b92fcf057204cfd3a117
Contents?: true
Size: 580 Bytes
Versions: 19
Compression:
Stored size: 580 Bytes
Contents
require 'travis/cli' module Travis module CLI class Status < RepoCommand on '-x', '--[no-]exit-code', 'sets the exit code to 1 if the build failed' on '-q', '--[no-]quiet', 'does not print anything' on '-p', '--[no-]fail-pending', 'sets the status code to 1 if the build is pending' def run say color(last_build.state, last_build.color), "build ##{last_build.number} %s" unless quiet? exit 1 if exit_code? and last_build.unsuccessful? exit 1 if fail_pending? and last_build.pending? end end end end
Version data entries
19 entries across 19 versions & 1 rubygems