Skip to content

Commit d5f7bc1

Browse files
committed
fix: dont check for zip
1 parent 1fb7786 commit d5f7bc1

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

main.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"errors"
66
"fmt"
77
"os"
8-
"os/exec"
98

109
"github.com/alexflint/go-arg"
1110
"go.uber.org/zap/zapcore"
@@ -15,10 +14,6 @@ import (
1514
var zxPluginsInject embed.FS
1615

1716
func main() {
18-
if _, err := exec.LookPath("zip"); err != nil {
19-
logger.Fatal("zip command not found in PATH, you need to install it")
20-
}
21-
2217
var args Args
2318
if err := arg.Parse(&args); err != nil {
2419
if errors.Is(err, arg.ErrHelp) {

0 commit comments

Comments
 (0)