From b177c4cf5c62522a0df79d779495a2c80fdc0cf3 Mon Sep 17 00:00:00 2001 From: jt-dd <112463504+jt-dd@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:47:46 +0200 Subject: [PATCH] Fix dev system-tests --down command (#277) --- cmd/kubehound/dev.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubehound/dev.go b/cmd/kubehound/dev.go index e2cedcce1..c5c59d7e2 100644 --- a/cmd/kubehound/dev.go +++ b/cmd/kubehound/dev.go @@ -59,7 +59,7 @@ var ( ) func runEnv(ctx context.Context, composePaths []string) error { - if uiTesting || downTesting { + if uiTesting { profiles = append(profiles, backend.DevUIProfile) }