Skip to content

Commit

Permalink
Merge pull request #799 from rfc1459/md5sums
Browse files Browse the repository at this point in the history
Fix md5sums generation for deb packages
  • Loading branch information
jordansissel committed Nov 4, 2014
2 parents 7a9812f + dcd2da6 commit 80281d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fpm/package/deb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ def write_md5sums
if not md5_sums.empty?
File.open(control_path("md5sums"), "w") do |out|
md5_sums.each do |path, md5|
out.puts "#{md5} #{path}"
out.puts "#{md5} #{path}"
end
end
File.chmod(0644, control_path("md5sums"))
Expand Down

0 comments on commit 80281d8

Please sign in to comment.