From 56937ac396e998e6e4729612915a65e1b4e8981c Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 2 Jun 2026 16:00:51 +0900 Subject: [PATCH] internal/rosa: populate opts of cloned S This was missed when migrating opts into S. Signed-off-by: Ophestra --- internal/rosa/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rosa/state.go b/internal/rosa/state.go index a53a0ffa..d55610fe 100644 --- a/internal/rosa/state.go +++ b/internal/rosa/state.go @@ -218,7 +218,7 @@ type S struct { // Clone returns a copy of s. func (s *S) Clone() *S { - v := S{arch: s.arch} + v := S{arch: s.arch, opts: s.opts} s.artifacts.Range(func(key, value any) bool { v.artifacts.Store(key, value) v.artifactCount.Add(1)