diff options
author | James Turnbull <james@lovedthanlost.net> | 2010-03-25 19:12:50 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2010-03-25 19:12:50 +1100 |
commit | 44798b90c2225dcb4919dbd9d8debf2ecb651864 (patch) | |
tree | e8a8b28648395fe636a1f761bec27f79a991e238 | |
parent | 5d10f65745ce78e71e9a4cfce7f1f60c45db2501 (diff) | |
download | puppet-44798b90c2225dcb4919dbd9d8debf2ecb651864.tar.gz puppet-44798b90c2225dcb4919dbd9d8debf2ecb651864.tar.xz puppet-44798b90c2225dcb4919dbd9d8debf2ecb651864.zip |
Fixed changelog Rake task
-rw-r--r-- | tasks/rake/changelog.rake | 2 |
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 |