From 2e6b5e13746bf62f69b310d5e6338ca56ec7e313 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Fri, 29 Apr 2022 14:11:05 -0400 Subject: [PATCH] Updating symlink log message The symlink message did not tell anyone what Helm does with the contents of the linked file. These are used in 2 places: 1. When loading a chart as a directory 2. When creating a chart archive (the linked files contents are included) Signed-off-by: Matt Farina --- internal/sympath/walk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/sympath/walk.go b/internal/sympath/walk.go index 752526fe9..a276cfeff 100644 --- a/internal/sympath/walk.go +++ b/internal/sympath/walk.go @@ -71,7 +71,7 @@ func symwalk(path string, info os.FileInfo, walkFn filepath.WalkFunc) error { if err != nil { return errors.Wrapf(err, "error evaluating symlink %s", path) } - log.Printf("found symbolic link in path: %s resolves to %s", path, resolved) + log.Printf("found symbolic link in path: %s resolves to %s. Contents of linked file included and used", path, resolved) if info, err = os.Lstat(resolved); err != nil { return err }