honkster-auto_tagger 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/recipes/release_tagger.rb +1 -1
- metadata +1 -1
data/recipes/release_tagger.rb
CHANGED
@@ -43,7 +43,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
43
43
|
desc %Q{Creates a tag using the stage variable}
|
44
44
|
task :create_tag, :roles => :app do
|
45
45
|
if variables[:stage]
|
46
|
-
AutoTagger.new(variables[:stage], variables[:working_directory]).create_tag(real_revision)
|
46
|
+
tag_name = AutoTagger.new(variables[:stage], variables[:working_directory]).create_tag(real_revision)
|
47
47
|
logger.info "AUTO TAGGER created tag #{tag_name} from #{real_revision}"
|
48
48
|
else
|
49
49
|
tag_name = AutoTagger.new(:production, variables[:working_directory]).create_tag
|