Lee Hambley

Results 227 comments of Lee Hambley

Hi @Fjan thanks for the report. Have you considered defining your task like: ``` task :backup_task => :backup_server do # ... end ``` I'm shooting a bit here from the...

Thanks for checking that so fast. I think we could refine/patch `{Capistrano|Rake}::Task` to have some accessor like `defines_a_stage?` and `ensure_stage` could check if one of the prerequisites of the current...

Thanks for the report @patrickbussmann - fo be clear could you provide the `config/deploy.rb` and `config/deploy/production.rb` here? Please only redact passwords and IPs, includes/requires may be relevant for diagnosing the...

Hi @mohamedhafez this is absolutely something you should be able to add by patching the rask tasks. I'm not sure how familiar with Rake (Capistrano) you are, but you should...

If you reopen `git:update` by just _defining again_ then you will be able to modify that task and we can definitely take a patch in the Git SCM plugin if/when...

Haha, I'm only just realizing that `git(:"verify-commit", fetch_revision) if fetch(:verify_commit, false)` is the entirety of your patch! Got it, so yeah, you can send us this in a PR (if...

@mattbrictson anything jumping out at you about why this might be the case? I'm not super familiar with AirBruSSH's output, even this looks like the default color printer ` DEBUG...

I'm not sure you are using Airbrussh, the output looks like the default formatter. Airbrush doesn't include lines like `DEBUG [6338b9df] Tasks `, see the gif on their README https://github.com/mattbrictson/airbrussh

First thoughts: - set your aws region in a task after the stage definition (`$ cap stage set-aws-region deploy`) - make the aws region part of your stage You addressed...

Alternative @olbrich if you know that you're always going to need this ``` task :production => :set_region task :staging => :set_region ``` (If I remember Rake correctly, this "reopens" `production`...