diff options
Diffstat (limited to 'internal/rosa/meson.go')
| -rw-r--r-- | internal/rosa/meson.go | 5 |
1 files changed, 1 insertions, 4 deletions
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 { |
