Skip to content

Commit

Permalink
Use --decompress instead of -decompress
Browse files Browse the repository at this point in the history
Oops. Fixes annoying warnings.
  • Loading branch information
AlexDaniel committed May 31, 2018
1 parent 0d9ece4 commit a49866c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Whateverable.pm6
Expand Up @@ -410,7 +410,7 @@ sub run-smth($full-commit-hash, $code, :$backend=‘rakudo-moar’) is export {
}
} else {
die lrzip is not installed unless run :err(Nil), <lrzip --version>; # check that lrzip is available
my $proc = run :out, :bin, <lrzip -decompress --quiet --outfile - -->, $archive-link;
my $proc = run :out, :bin, <lrzip --decompress --quiet --outfile - -->, $archive-link;
run :in($proc.out), :bin, <tar --extract --absolute-names -->, $build-path;
}

Expand Down

0 comments on commit a49866c

Please sign in to comment.