summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-03-25 19:12:50 +1100
committerJames Turnbull <james@lovedthanlost.net>2010-03-25 19:12:50 +1100
commit44798b90c2225dcb4919dbd9d8debf2ecb651864 (patch)
treee8a8b28648395fe636a1f761bec27f79a991e238
parent5d10f65745ce78e71e9a4cfce7f1f60c45db2501 (diff)
downloadpuppet-44798b90c2225dcb4919dbd9d8debf2ecb651864.tar.gz
puppet-44798b90c2225dcb4919dbd9d8debf2ecb651864.tar.xz
puppet-44798b90c2225dcb4919dbd9d8debf2ecb651864.zip
Fixed changelog Rake task
-rw-r--r--tasks/rake/changelog.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rake/changelog.rake b/tasks/rake/changelog.rake
index adeeb03a4..b39fe87e8 100644
--- a/tasks/rake/changelog.rake
+++ b/tasks/rake/changelog.rake
@@ -8,7 +8,7 @@ task :changelog do
CHANGELOG_DIR = "#{Dir.pwd}"
mkdir(CHANGELOG_DIR) unless File.directory?(CHANGELOG_DIR)
- change_body = `git-changelog --no-limit -a`
+ change_body = `git-changelog --no-limit`
File.open(File.join(CHANGELOG_DIR, "CHANGELOG"), 'w') do |f|
f << change_body
end