From d3ad01da0c2f3b6483bf86cb0bbf777844e96104 Mon Sep 17 00:00:00 2001 From: "Greg T. Wallace" Date: Tue, 18 Jun 2024 21:30:42 -0400 Subject: [PATCH] build: fix typo for windows install only file --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index 3fee1f4..7147a33 100644 --- a/build.ps1 +++ b/build.ps1 @@ -11,7 +11,7 @@ go build -o $outDir/apc-p15-tool-amd64.exe ./cmd/tool $env:GOARCH = "amd64" $env:GOOS = "windows" $env:CGO_ENABLED = 0 -go build -o $outDir/apc-p15-install-amd64.exe ./cmd/tool +go build -o $outDir/apc-p15-install-amd64.exe ./cmd/install_only # Linux x64 $env:GOARCH = "amd64"