ostree_container: Use unique temporary directory
The config repository is cloned into a path that conflicts with the regular ostree phase. Let's use a unique name to avoid that problem. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
f4bf0739aa
commit
7e779aa90f
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ class OSTreeContainerThread(WorkerThread):
|
|||
def worker(self, compose, variant, arch, config):
|
||||
msg = "OSTree phase for variant %s, arch %s" % (variant.uid, arch)
|
||||
self.pool.log_info("[BEGIN] %s" % msg)
|
||||
workdir = compose.paths.work.topdir("ostree-%d" % self.num)
|
||||
workdir = compose.paths.work.topdir("ostree-container-%d" % self.num)
|
||||
self.logdir = compose.paths.log.topdir(
|
||||
"%s/%s/ostree-container-%d" % (arch, variant.uid, self.num)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue