Skip to content

Commit

Permalink
fix: remove go.exe as argument to go command
Browse files Browse the repository at this point in the history
  • Loading branch information
redjonzaci authored May 22, 2024
1 parent d583756 commit 54204f3
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 54204f3

Please sign in to comment.