Skip to content

Commit

Permalink
fix: remove go.exe as argument to go command (#13789)
Browse files Browse the repository at this point in the history
  • Loading branch information
redjonzaci authored Jul 2, 2024
1 parent 2489d73 commit 2570d0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const buildResource = async ({ buildType, srcRoot, lastBuildTimeStamp }:

if (isWindows) {
envVars.CGO_ENABLED = 0;
executeCommand(['go.exe', 'install', 'github.com/aws/aws-lambda-go/cmd/build-lambda-zip@latest'], true, envVars, srcDir);
executeCommand(['install', 'github.com/aws/aws-lambda-go/cmd/build-lambda-zip@latest'], true, envVars, srcDir);
}

// for [email protected], dependencies must be manually installed
Expand Down

0 comments on commit 2570d0c

Please sign in to comment.