lib/travis/cli/status.rb in travis-1.11.1 vs lib/travis/cli/status.rb in travis-1.12.0

- old
+ new

@@ -1,19 +1,21 @@ +# frozen_string_literal: true + require 'travis/cli' module Travis module CLI class Status < RepoCommand - description "checks status of the latest build" + description 'checks status of the latest build' 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? + exit 1 if exit_code? && last_build.unsuccessful? + exit 1 if fail_pending? && last_build.pending? end end end end