Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Oct 27, 2024
1 parent f910c53 commit 37b672b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/io/compress.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ func Compress(dir string, src []string, dst string) error {
switch format {
case Zip:
cmd = exec.Command("zip", append([]string{"-qr", "-o", dst}, src...)...)
debug.Dump(append([]string{"-qr", "-o", dst}, src...))
case Gz:
cmd = exec.Command("tar", append([]string{"-czf", dst}, src...)...)
case Bz2:
Expand Down

0 comments on commit 37b672b

Please sign in to comment.