diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-31 21:27:19 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-31 21:38:09 +0900 |
| commit | 959483230291e04d50a1f5658cb0d3ce19cd5598 (patch) | |
| tree | 5cb0b066d8b8b27197c2c0078f16bbaee64c64fd /internal | |
| parent | 91a2d4d6e1c0039f6b442c8c97b1aa809e09e33b (diff) | |
internal/rosa/meson: disallow download
This will fail and waste time on KindExec, and cause nondeterminism in KindExecNet.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/rosa/meson.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/rosa/meson.go b/internal/rosa/meson.go index 63b945ae..61317604 100644 --- a/internal/rosa/meson.go +++ b/internal/rosa/meson.go @@ -114,6 +114,7 @@ cd "$(mktemp -d)" meson setup \ ` + strings.Join(slices.Collect(func(yield func(string) bool) { for _, v := range append([]KV{ + {"wrap-mode", "nodownload"}, {"prefix", "/system"}, {"buildtype", "release"}, }, attr.Setup...) { |
