add debug

This commit is contained in:
Jörg Thalheim 2024-04-12 19:07:45 +02:00
parent 538c114cfd
commit 072e9e9fca

View file

@ -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)
}