From ba35dd8a77d67e6f8b241be8baf24057a7345c4e Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Tue, 26 Mar 2013 13:12:00 -0400 Subject: [PATCH] Update Capistrano integration instructions. As per feedback from Wes of TurboVote, the original submitter. (imported from commit a2aab5c779f4c4519222365d957c991e3fa99f4b) --- templates/zephyr/integrations.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/zephyr/integrations.html b/templates/zephyr/integrations.html index 652ca51595..83b81e56de 100644 --- a/templates/zephyr/integrations.html +++ b/templates/zephyr/integrations.html @@ -54,7 +54,7 @@

Here's some example code for sending a Humbug notification after a deployment has completed:

-
after 'deploy:create_symlink', 'notify:humbug'
+
after 'deploy', 'notify:humbug'
 
 namespace :notify do
   desc "Post a message to Humbug that we've deployed"
@@ -70,9 +70,9 @@
         
  • Make sure you've created a filled-out ~/.humbugrc on your Capistrano machine.
  • -
  • You may need to change - the deploy:create_symlink above to the final step - of your deployment process, if it is different.
  • +
  • You may need to change the deploy above to + another step of your deployment process, if you'd like the + notification to fire at a different time.