Skip to content

Commit

Permalink
fix(install): use gzip compress to build packages for Debian
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiejol committed Jun 2, 2022
1 parent 68dd0e0 commit 0517c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deb/debianize.pl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ sub create_deb {

mkdir "ravada_release" if !-e "ravada_release";
my $deb = "ravada_release/ravada_${VERSION}_${dist}_all.deb";
my @cmd = ('dpkg','-b',"$DIR_DST/",$deb);
my @cmd = ('dpkg-deb','-b','-Zgzip',"$DIR_DST/",$deb);
my ($in, $out, $err);
run3(\@cmd, \$in, \$out, \$err);
die $err if $err;
Expand Down

0 comments on commit 0517c27

Please sign in to comment.