diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-01 03:42:14 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-01 03:42:48 +0900 |
| commit | 445d95023b1d9d152417838c4edad54f7bf4efe3 (patch) | |
| tree | 95ba56140b93cc3220472f16a6c9e699d8c5a83e /internal/rosa/meson.go | |
| parent | fc66f0bb47dd4634f81aa67bf8fc092945643520 (diff) | |
internal/rosa: global preset flags
These changes preset behaviour globally. Useful for ad hoc workarounds for development or bootstrapping on resource-constrained systems.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/meson.go')
| -rw-r--r-- | internal/rosa/meson.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rosa/meson.go b/internal/rosa/meson.go index 4b778a75..638074b9 100644 --- a/internal/rosa/meson.go +++ b/internal/rosa/meson.go @@ -117,7 +117,7 @@ func (attr *MesonHelper) script(name string) string { } var scriptTest string - if !attr.SkipTest { + if !attr.SkipTest && presetOpts&OptSkipCheck == 0 { scriptTest = ` meson test \ --print-errorlogs` |
