diff --git a/pkgs/sops-install-secrets/main.go b/pkgs/sops-install-secrets/main.go index 103323d..b4691c7 100644 --- a/pkgs/sops-install-secrets/main.go +++ b/pkgs/sops-install-secrets/main.go @@ -922,6 +922,7 @@ func installSecrets(args []string) error { manifest.SymlinkPath = replaceRuntimeDir(manifest.SymlinkPath, rundir) var newSecrets []secret for _, secret := range manifest.Secrets { + fmt.Printf("Replacing %s with %s\n", secret.Path, replaceRuntimeDir(secret.Path, rundir)) secret.Path = replaceRuntimeDir(secret.Path, rundir) newSecrets = append(newSecrets, secret) }