From aa5bfe04d57ae0697839036e76b6f7a046606ece Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 11 Aug 2025 17:10:16 +0200 Subject: pkg: move gcpsecret to a separate package It simplifies the dependency tree and fixes a build error for the send-test-email container. --- syz-cluster/tools/send-test-email/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'syz-cluster/tools') diff --git a/syz-cluster/tools/send-test-email/Dockerfile b/syz-cluster/tools/send-test-email/Dockerfile index 41e029ded..69706aff0 100644 --- a/syz-cluster/tools/send-test-email/Dockerfile +++ b/syz-cluster/tools/send-test-email/Dockerfile @@ -8,9 +8,9 @@ COPY go.sum ./ RUN go mod download COPY dashboard/dashapi/ dashboard/dashapi/ COPY pkg/gcs/ pkg/gcs/ -COPY pkg/gce/ pkg/gce/ COPY pkg/email/ pkg/email/ COPY pkg/auth/ pkg/auth/ +COPY pkg/gcpsecret/ pkg/gcpsecret/ # Build the tool. COPY syz-cluster/tools/send-test-email/*.go syz-cluster/tools/send-test-email/ -- cgit mrf-deployment