From 5cccff67fb8e7117de6a3c5c672a259291316267 Mon Sep 17 00:00:00 2001 From: Omar Sy Date: Tue, 9 Jul 2024 22:29:16 +0200 Subject: [PATCH] fix: remove lint --- src/install.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/install.ts b/src/install.ts index b22a2a1f51..77422bb92a 100644 --- a/src/install.ts +++ b/src/install.ts @@ -59,14 +59,6 @@ export async function goInstall(versionConfig: VersionConfig): Promise { const bres = await execShellCommand(`cd gno/gnovm && make build`) printOutput(bres) - const options: ExecOptions = { env: { ...process.env, CGO_ENABLED: "1" } } - - const exres = await execShellCommand( - `go install github.com/golangci/golangci-lint/cmd/golangci-lint@${versionConfig.TargetVersion}`, - options - ) - printOutput(exres) - const res = await execShellCommand("go env GOPATH") printOutput(res)