1
0

Use single temp directory base

This commit is contained in:
2023-04-07 16:43:56 +00:00
parent 32b692f752
commit 056e38698e
6 changed files with 18 additions and 21 deletions

View File

@@ -61,7 +61,7 @@ func preload(q *qemu.System, ki config.KernelInfo, pm config.PreloadModule,
func buildAndInsmod(workPath string, q *qemu.System, ki config.KernelInfo,
dockerTimeout time.Duration, cache string) (err error) {
tmp, err := ioutil.TempDir("", "out-of-tree_")
tmp, err := ioutil.TempDir(tempDirBase, "out-of-tree_")
if err != nil {
return
}