Author: boisvert
Date: Mon Dec  6 22:46:27 2010
New Revision: 1042830

URL: http://svn.apache.org/viewvc?rev=1042830&view=rev
Log:
BUILDR-557 MD5 + SHA1 checksums are not Maven compliant (Tammo van Lessen)

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/core/transports.rb

Modified: buildr/trunk/CHANGELOG
URL: 
http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=1042830&r1=1042829&r2=1042830&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Mon Dec  6 22:46:27 2010
@@ -25,6 +25,7 @@
 * Fixed:  BUILDR-522 Send notifications when continuous compilation
           succeeds/fails.
 * Fixed:  BUILDR-551 Continuous compilation not working for project trees
+* Fixed:  BUILDR-557 MD5 + SHA1 checksums are not Maven compliant (Tammo van 
Lessen)
 * Change: Upgrade to Groovy 1.7.5
 * Change: BUILDR-545 Add the ability to specify the description element in in
           application.xml contained within an ear.

Modified: buildr/trunk/lib/buildr/core/transports.rb
URL: 
http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/transports.rb?rev=1042830&r1=1042829&r2=1042830&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/transports.rb (original)
+++ buildr/trunk/lib/buildr/core/transports.rb Mon Dec  6 22:46:27 2010
@@ -221,7 +221,7 @@ module URI
           end
         end
         digests.each do |key, digest|
-          self.merge("#{self.path}.#{key}").write "#{digest.hexdigest} 
#{File.basename(path)}",
+          self.merge("#{self.path}.#{key}").write digest.hexdigest,
             (options).merge(:progress=>false)
         end
       else


Reply via email to