Skip to content

Commit

Permalink
Fix release task
Browse files Browse the repository at this point in the history
Add a parentheses.
related: b4c9649
  • Loading branch information
arthurnn committed Mar 31, 2014
1 parent b88cfed commit 21a674a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

namespace :changelog do
task :release_date do
FRAMEWORKS + ['guides'].each do |fw|
(FRAMEWORKS + ['guides']).each do |fw|
require 'date'
replace = '\1(' + Date.today.strftime('%B %d, %Y') + ')'
fname = File.join fw, 'CHANGELOG.md'
Expand All @@ -78,7 +78,7 @@
end

task :release_summary do
FRAMEWORKS + ['guides'].each do |fw|
(FRAMEWORKS + ['guides']).each do |fw|
puts "## #{fw}"
fname = File.join fw, 'CHANGELOG.md'
contents = File.readlines fname
Expand Down

0 comments on commit 21a674a

Please sign in to comment.