class Takeoff::Stage::PushToGithub

Public Instance Methods

call(env) click to toggle source
# File lib/takeoff/stage/push_to_github.rb, line 6
def call(env)
  log     "Pushing checkpoint branch to GitHub"
  execute "git push github #{env[:checkpoint_branch]}:#{env[:checkpoint_branch]} --force"

  @app.call(env)
end