mirror of
https://github.com/gregtwallace/apc-p15-tool.git
synced 2025-06-23 02:48:45 +00:00
v0.3.0
This commit is contained in:
parent
201aedce1c
commit
6d9878558b
5 changed files with 59 additions and 37 deletions
14
build.ps1
14
build.ps1
|
@ -7,12 +7,24 @@ $env:GOARCH = "amd64"
|
|||
$env:GOOS = "windows"
|
||||
go build -o $outDir/apc-p15-tool-amd64.exe ./cmd/tool
|
||||
|
||||
$env:GOARCH = "amd64"
|
||||
$env:GOOS = "windows"
|
||||
go build -o $outDir/apc-p15-install-amd64.exe ./cmd/tool
|
||||
|
||||
# Linux x64
|
||||
$env:GOARCH = "amd64"
|
||||
$env:GOOS = "linux"
|
||||
go build -o $outDir/apc-p15-tool-amd64 ./cmd/tool
|
||||
|
||||
# Linux x64 install only
|
||||
$env:GOARCH = "amd64"
|
||||
$env:GOOS = "linux"
|
||||
go build -o $outDir/apc-p15-install-amd64 ./cmd/install_only
|
||||
|
||||
# Linux arm64
|
||||
$env:GOARCH = "arm64"
|
||||
$env:GOOS = "linux"
|
||||
go build -o $outDir/apc-p15-tool-arm64 ./cmd/tool
|
||||
|
||||
$env:GOARCH = "arm64"
|
||||
$env:GOOS = "linux"
|
||||
go build -o $outDir/apc-p15-install-arm64 ./cmd/install_only
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue