From 950b792495ed39ecee48327fb74d2049a10f2721 Mon Sep 17 00:00:00 2001 From: Piyush Kumar Date: Thu, 24 Aug 2023 10:03:35 +0530 Subject: [PATCH] fixed provider fips ldflags variable Signed-off-by: Piyush Kumar --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 895eb94..bde11ce 100644 --- a/Earthfile +++ b/Earthfile @@ -47,7 +47,7 @@ BUILD_GOLANG: ENV CGO_ENABLED=0 END - RUN go build -ldflags "-s -w" -o ${BIN} ./${SRC} + RUN go build -ldflags "${LDFLAGS}" -o ${BIN} ./${SRC} SAVE ARTIFACT ${BIN} ${BIN} AS LOCAL build/${BIN} VERSION: