From dbad7cd7cd596403083739f585c0659b45ed0585 Mon Sep 17 00:00:00 2001 From: Karl Matthias Date: Tue, 10 Apr 2012 14:32:51 +0100 Subject: [PATCH] The after hook should point to the correct task. --- lib/capistrano/deploy_tags.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/capistrano/deploy_tags.rb b/lib/capistrano/deploy_tags.rb index a2bf486..6419cf4 100644 --- a/lib/capistrano/deploy_tags.rb +++ b/lib/capistrano/deploy_tags.rb @@ -35,7 +35,7 @@ module Capistrano def self.load_into(configuration) configuration.load do before :deploy, 'git:prepare_tree' - after :deploy, 'git:deploytags' + after :deploy, 'git:tagdeploy' desc 'prepare git tree so we can tag on successful deployment' namespace :git do