From d73c9880732f0b6399f8a92829e2c25886bdf370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Thu, 31 Oct 2024 18:32:01 +0800 Subject: [PATCH] chore: debug --- pkg/io/compress.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/io/compress.go b/pkg/io/compress.go index eebec45e..4c603b96 100644 --- a/pkg/io/compress.go +++ b/pkg/io/compress.go @@ -34,7 +34,6 @@ func Compress(dir string, src []string, dst string) error { return err } - var out string switch format { case Zip: _, err = shell.ExecfWithDir(dir, "zip -qr -o %s %s", dst, strings.Join(src, " "))