pipeline: small whitespace change

No need to spread the BuildRoot instantiation over two lines.
This commit is contained in:
Christian Kellner 2021-07-07 17:14:46 +00:00 committed by Tom Gundersen
parent 46d675b102
commit a449bf0c42

View file

@ -82,8 +82,7 @@ class Stage:
def run(self, tree, runner, build_tree, store, monitor, libdir):
with contextlib.ExitStack() as cm:
build_root = buildroot.BuildRoot(
build_tree, runner, libdir, store.tmp)
build_root = buildroot.BuildRoot(build_tree, runner, libdir, store.tmp)
cm.enter_context(build_root)
inputs_tmpdir = store.tempdir(prefix="inputs-")