Skip to content

Commit

Permalink
Merge pull request jordansissel#77 from tmm1/debian-control-format
Browse files Browse the repository at this point in the history
debian control.tar.gz contents use ./ prefix
  • Loading branch information
jordansissel committed Jul 16, 2011
2 parents 0d26b55 + 29b8b66 commit 2dd0dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fpm/target/deb.rb
Expand Up @@ -87,7 +87,7 @@ def build!(params)
end

# Make the control
system("tar -zcf control.tar.gz #{control_files.join(" ")}")
system("tar -zcf control.tar.gz #{control_files.map{ |f| "./#{f}" }.join(" ")}")

# create debian-binary
File.open("debian-binary", "w") { |f| f.puts "2.0" }
Expand Down

0 comments on commit 2dd0dda

Please sign in to comment.