From eb67e5e0a8821058fed782bf9c90b45c793036a5 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 27 Jan 2026 01:16:21 +0900 Subject: internal/pkg: exclusive artifacts This alleviates scheduler overhead when curing many artifacts. Signed-off-by: Ophestra --- internal/rosa/rsync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/rosa/rsync.go') diff --git a/internal/rosa/rsync.go b/internal/rosa/rsync.go index c43244ba..8ce704e7 100644 --- a/internal/rosa/rsync.go +++ b/internal/rosa/rsync.go @@ -7,7 +7,7 @@ func (t Toolchain) newRsync() pkg.Artifact { version = "3.4.1" checksum = "VBlTsBWd9z3r2-ex7GkWeWxkUc5OrlgDzikAC0pK7ufTjAJ0MbmC_N04oSVTGPiv" ) - return t.New("rsync-"+version, []pkg.Artifact{ + return t.New("rsync-"+version, false, []pkg.Artifact{ t.Load(Make), }, nil, nil, ` cd "$(mktemp -d)" -- cgit v1.3.1