fix(ci): use correct variable syntax for build-distros job (#12933)

pull/12942/head
Evan Culver 3 years ago committed by GitHub
parent a668c36930
commit dfcd1f90a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -414,7 +414,7 @@ jobs:
command: |
for os in $XC_OS; do
target="./pkg/bin/${GOOS}_${GOARCH}/"
GOOS="$os" CGO_ENABLED=0 go build -o "$target" -ldflags "$(GOLDFLAGS)" -tags "$(GOTAGS)"
GOOS="$os" CGO_ENABLED=0 go build -o "${target}" -ldflags "${GOLDFLAGS}" -tags "${GOTAGS}"
done
# save dev build to CircleCI

Loading…
Cancel
Save