From 5d9efcb88a34ca14d3e3f8d65131ec9ee4dfea08 Mon Sep 17 00:00:00 2001 From: Nick Van Wiggeren Date: Fri, 14 May 2021 13:51:41 -0700 Subject: [PATCH] do not try to check libs for linux --- internal/cmd/shell/shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/shell/shell.go b/internal/cmd/shell/shell.go index deba547e..16701902 100644 --- a/internal/cmd/shell/shell.go +++ b/internal/cmd/shell/shell.go @@ -312,7 +312,7 @@ func checkLibs(ctx context.Context, mysqlPath string) (bool, error) { name = "otool" args = []string{"-L"} case "linux": - name = "ldd" + return false, nil case "unix": return false, nil }