Skip to content

Commit

Permalink
disable zstd
Browse files Browse the repository at this point in the history
  • Loading branch information
rchincha committed Dec 2, 2024
1 parent 1be4f9a commit 9e81642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/erofs/erofs.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func MakeErofs(tempdir string, rootfs string, eps *common.ExcludePaths, verity v
args := []string{tmpErofs.Name(), rootfs}
compression := LZ4HCCompression
zstdOk, parallelOk := mkerofsSupportsFeature()
if zstdOk {
if zstdOk && false {
args = append(args, "-z", "zstd")
compression = ZstdCompression
}

Check warning on line 86 in pkg/erofs/erofs.go

View check run for this annotation

Codecov / codecov/patch

pkg/erofs/erofs.go#L84-L86

Added lines #L84 - L86 were not covered by tests
Expand Down

0 comments on commit 9e81642

Please sign in to comment.