Skip to content

Commit

Permalink
Fix syntax I broke when doing a merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jordansissel committed Dec 8, 2024
1 parent 8acb2f5 commit 512f4a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/fpm/package/deb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ def output(output_path)
datatar = build_path("data.tar.zst")
controltar = build_path("control.tar.zst")
compression_flags = ["-I zstd"]
compressor_options = {"ZSTD_CLEVEL", "-#{self.attributes[:deb_compression_level] || 3}"}
compressor_options = {"ZSTD_CLEVEL" => "-#{self.attributes[:deb_compression_level] || 3}"}
when "none"
datatar = build_path("data.tar")
controltar = build_path("control.tar")
Expand Down Expand Up @@ -991,7 +991,7 @@ def write_control_tarball
when "zst"
controltar = "control.tar.zst"
compression_flags = ["-I zstd"]
compressor_options = {"ZSTD_CLEVEL", "-#{self.attributes[:deb_compression_level] || 3}"}
compressor_options = {"ZSTD_CLEVEL" => "-#{self.attributes[:deb_compression_level] || 3}"}
when "none"
controltar = "control.tar"
compression_flags = []
Expand Down

0 comments on commit 512f4a9

Please sign in to comment.