From f954b7c3ed3709d57bb71efe9ff607a922ba1dcd Mon Sep 17 00:00:00 2001 From: The_Spider Date: Sun, 30 Jan 2022 14:14:47 -0600 Subject: [PATCH] adds missing bash command merging && --- build-sidecar-injector.jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-sidecar-injector.jenkinsfile b/build-sidecar-injector.jenkinsfile index 2fed33e..7d972ae 100644 --- a/build-sidecar-injector.jenkinsfile +++ b/build-sidecar-injector.jenkinsfile @@ -19,7 +19,7 @@ RUN apk add --no-cache git upx && \\ adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app && \\ go mod download && \\ GIT_HASH=\$(git rev-parse --short HEAD) && GIT_TAG=\$(git tag | tail -1) && \\ - CGO_ENABLED=0 \\ + CGO_ENABLED=0 && \\ GOOS=linux && \\ GOARCH=amd64 && \\ go build \\