From f2f6ad64372977358b48224bfa209285eb02c0c2 Mon Sep 17 00:00:00 2001 From: dadav <33197631+dadav@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:54:16 +0200 Subject: [PATCH] fix: clarify warning --- cmd/helm-schema/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm-schema/main.go b/cmd/helm-schema/main.go index a2c0c2e..d7363af 100644 --- a/cmd/helm-schema/main.go +++ b/cmd/helm-schema/main.go @@ -245,7 +245,7 @@ loop: depSchema.DisableRequiredProperties() result.Schema.Properties[depName] = depSchema } else { - log.Warnf("Dependency (%s) specified but no schema found (maybe dependencies are still in tarball?).", depName) + log.Warnf("Dependency (%s) specified but no schema found. If you want to create jsonschemas for external dependencies, you need to run helm dependency build & untar the charts.", depName) } } else { log.Warnf("Dependency without name found (checkout %s).", result.ChartPath)