devtool: modify: call shutdown on tinfoil when done

Strictly speaking we ought to explicitly shut down a tinfoil instance
when we're done with it. This doesn't affect modify's operation but is
important if you want to be able to call into modify() from another
plugin (though anyone doing so should be advised that the function is
by no means a stable API and is subject to change in future releases).

(From OE-Core rev: 626dbadf22b57a22a8f8b9d1957937120f4ba4d5)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2016-03-31 21:53:35 +13:00 committed by Richard Purdie
parent 43da71258c
commit 4b7790915f
1 changed files with 2 additions and 0 deletions

View File

@ -805,6 +805,8 @@ def modify(args, config, basepath, workspace):
logger.info('Recipe %s now set up to build from %s' % (pn, srctree))
tinfoil.shutdown()
return 0
def _get_patchset_revs(args, srctree, recipe_path):