From 6546ddc64bcbf73c7419bac7af596b924005dbc3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 21 May 2026 16:10:55 +0900 Subject: internal/rosa: expose in-place behaviour in generic helper This change also combines the createDir and wantsDir methods, and replaces the non-inplace target of the generic helper with a deterministic path. Signed-off-by: Ophestra --- internal/rosa/meson.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'internal/rosa/meson.go') diff --git a/internal/rosa/meson.go b/internal/rosa/meson.go index c324cf88..4ee126e4 100644 --- a/internal/rosa/meson.go +++ b/internal/rosa/meson.go @@ -36,11 +36,8 @@ func (*MesonHelper) wantsWrite() bool { return false } // scriptEarly returns the zero value. func (*MesonHelper) scriptEarly() string { return "" } -// createDir returns false. -func (*MesonHelper) createDir() bool { return false } - // wantsDir requests a new directory in TMPDIR. -func (*MesonHelper) wantsDir() string { return `"$(mktemp -d)"` } +func (*MesonHelper) wantsDir() (string, bool) { return `"$(mktemp -d)"`, false } // script generates the cure script. func (attr *MesonHelper) script(t Toolchain, name string) string { -- cgit v1.3.1