CompressLog: Add zstd compression

This commit is contained in:
Janne Heß
2022-06-12 17:57:49 +02:00
committed by Sandro Jäckel
parent 7de7122479
commit 2c886f51d3
4 changed files with 25 additions and 5 deletions

View File

@ -174,6 +174,9 @@ sub getDrvLogPath {
for ($fn . $bucketed, $fn . $bucketed . ".bz2") {
return $_ if -f $_;
}
for ($fn . $bucketed, $fn . $bucketed . ".zst") {
return $_ if -f $_;
}
return undef;
}