Class: CircleCI::CLI::Command::CancelCommand

Inherits:
BaseCommand
  • Object
show all
Defined in:
lib/circleci/cli/command/cancel_command.rb

Class Method Summary collapse

Methods inherited from BaseCommand

build_number, project_name, reponame, setup_token, should_be_pretty

Class Method Details

.run(options) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/circleci/cli/command/cancel_command.rb', line 8

def run(options)
  setup_token
  username, reponame = project_name(options).split('/')
  number = build_number(options)
  build = Response::Build.cancel(username, reponame, number)
  if build.username
    say "build #{build.project_name} #{build.build_number} is canceled."
  else
    say "failed to cancel #{username}/#{reponame} #{number}."
  end
end