From 947676ed8ebf09502209174bf7ab357b51454758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serta=C3=A7=20=C3=96zercan?= <852750+sozercan@users.noreply.github.com> Date: Wed, 1 Feb 2023 15:01:49 -0800 Subject: [PATCH] fix: add vendor manifests back (#2558) --- build/tooling/vendormanifests.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 build/tooling/vendormanifests.go diff --git a/build/tooling/vendormanifests.go b/build/tooling/vendormanifests.go new file mode 100644 index 00000000000..9dc075b235f --- /dev/null +++ b/build/tooling/vendormanifests.go @@ -0,0 +1,9 @@ +// This is used for vendoring frameworks to Gatekeeper. + +//go:build tools + +package build + +import ( + _ "github.com/open-policy-agent/frameworks/constraint/deploy" +)