changes output file name in compile statment

This commit is contained in:
Hyatt 2022-03-18 09:40:30 -05:00
parent 434efeaa9b
commit 35b18b61ea
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

2
Jenkinsfile vendored
View File

@ -97,7 +97,7 @@ sonar.go.coverage.reportPaths=cover.out
fi
apk add --no-cache libusb-dev gcc g++ musl-dev pkgconfig
go install -v ./...
GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -tags timetzdata -o tplink ./cmd/go-temper
GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -tags timetzdata -o go-temper ./cmd/go-temper
upx --lzma go-temper
"""
}