pipeline: small whitespace change
No need to spread the BuildRoot instantiation over two lines.
This commit is contained in:
parent
46d675b102
commit
a449bf0c42
1 changed files with 1 additions and 2 deletions
|
|
@ -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-")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue