diff options
Diffstat (limited to 'internal/rosa/python.go')
| -rw-r--r-- | internal/rosa/python.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go index af4580e8..d868efe3 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -48,11 +48,8 @@ func (attr *PipHelper) wantsWrite() bool { return attr.wantsChmod() } // scriptEarly is a noop. func (*PipHelper) scriptEarly() string { return "" } -// createDir returns false. -func (*PipHelper) createDir() bool { return false } - // wantsDir requests a new directory in TMPDIR. -func (*PipHelper) wantsDir() string { return `"$(mktemp -d)"` } +func (*PipHelper) wantsDir() (string, bool) { return `"$(mktemp -d)"`, false } // script generates the pip3 install command. func (attr *PipHelper) script(_ Toolchain, name string) string { |
