From 7ccadae8dc2da93aea5f02db71d2cadbfc312d1a Mon Sep 17 00:00:00 2001 From: eding Date: Sun, 26 Jul 2026 20:48:09 +0200 Subject: [PATCH] fix: seed new app repository from HEAD --- cmd/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bootstrap.go b/cmd/bootstrap.go index c7d6691..ccf0132 100644 --- a/cmd/bootstrap.go +++ b/cmd/bootstrap.go @@ -63,7 +63,7 @@ func runBootstrap(cmd *cobra.Command, args []string) error { return err } if created { - if err := manager.PushRef(bootstrapPublishAppFrom, cfg.Delivery.AppRepoURL, cfg.Delivery.AppRepoRef, cfg.Delivery.AppRepoRef); err != nil { + if err := manager.PushRef(bootstrapPublishAppFrom, cfg.Delivery.AppRepoURL, "HEAD", cfg.Delivery.AppRepoRef); err != nil { return err } }