Skip to content

Commit

Permalink
disable XForge looking for CHANGES file
Browse files Browse the repository at this point in the history
  • Loading branch information
cpjolicoeur committed May 22, 2009
1 parent ad167a0 commit cf2e6de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Rakefile
Expand Up @@ -126,7 +126,10 @@ task :release_files => [:clean, :package] do
release.files = release_files.to_a
release.package_name = PKG_NAME
release.release_name = "Cerberus #{PKG_VERSION}"
release.release_notes = IO.read( File.dirname( __FILE__ ) + '/Changelog.txt' )

# disable parsing of CHANGES file since it doesn't exist
release.changes_file = nil
release.release_notes = '' # IO.read( File.dirname( __FILE__ ) + '/Changelog.txt' )
release.release_changes = IO.read( File.dirname( __FILE__ ) + '/Changelog.txt' )
end

Expand Down

0 comments on commit cf2e6de

Please sign in to comment.