17 lines
352 B
PowerShell
17 lines
352 B
PowerShell
# $ErrorActionPreference = 'SilentlyContinue'
|
|
|
|
del houston.zip
|
|
|
|
$Env:GOOS="linux"
|
|
$Env:GOARCH="amd64"
|
|
|
|
go get repositories.action2quare.com/ayo/gocommon
|
|
go mod tidy
|
|
|
|
go build -ldflags="-s -w" -tags=client .
|
|
|
|
Compress-Archive -Path config.json -Update -DestinationPath houston.zip
|
|
Compress-Archive -Path houston -Update -DestinationPath houston.zip
|
|
|
|
|