From 404ee73dcd798ed349308d2437bfb1f87164fef7 Mon Sep 17 00:00:00 2001 From: Prasanna Kumar Kalever Date: Tue, 18 Aug 2020 15:17:28 +0530 Subject: [PATCH] cleanup: fix cmd in container img building errmsg Signed-off-by: Prasanna Kumar Kalever --- deploy/cephcsi/image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/cephcsi/image/Dockerfile b/deploy/cephcsi/image/Dockerfile index 4255c5ff9..31d2ed3f7 100644 --- a/deploy/cephcsi/image/Dockerfile +++ b/deploy/cephcsi/image/Dockerfile @@ -16,7 +16,7 @@ ARG GOROOT=/usr/local/go COPY build.env / RUN source /build.env && \ - ( test -n "${GO_ARCH}" && exit 0; echo -e "\n\nMissing GO_ARCH argument for building image, install Golang or run: make image-ceph-csi GOARCH=amd64\n\n"; exit 1 ) && \ + ( test -n "${GO_ARCH}" && exit 0; echo -e "\n\nMissing GO_ARCH argument for building image, install Golang or run: make image-cephcsi GOARCH=amd64\n\n"; exit 1 ) && \ mkdir -p ${GOROOT} && \ curl https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-${GO_ARCH}.tar.gz | tar xzf - -C ${GOROOT} --strip-components=1