From 7b1de17e5dc426d954a59c4f2d25bba8d27d5a14 Mon Sep 17 00:00:00 2001 From: eding Date: Sun, 13 Sep 2026 13:55:02 +0200 Subject: [PATCH] fix: retain app registrations across refresh --- internal/bootstrap/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/bootstrap/bootstrap.go b/internal/bootstrap/bootstrap.go index 53429dd..a828208 100644 --- a/internal/bootstrap/bootstrap.go +++ b/internal/bootstrap/bootstrap.go @@ -480,7 +480,7 @@ func renderPlatformDeliveryConfig(dir string, cfg config.Config) error { func copyAndRenderPlatformDeliveryBases(templateDir, repoDir string, cfg config.Config) error { bases := []string{"gateway", "tekton", "tekton-triggers"} apps := filepath.Join(repoDir, "base", "tekton", "apps") - backup := apps + ".maidn-preserve" + backup := filepath.Join(repoDir, ".maidn-preserve-tekton-apps") if err := os.RemoveAll(backup); err != nil { return err }