mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00
wic: fix path parsing, use last occurrence
If the path contains 'scripts' more than once the first occurrence will be incorrectly used. Use rfind instead of find to find the last occurrence. (From OE-Core rev: fd544c3ef6ece1e2f9849ee87227efc6d0954e15) Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
a01d3234f6
commit
9149baa38d
|
@ -42,7 +42,7 @@ class PluginMgr(object):
|
|||
|
||||
def __init__(self):
|
||||
wic_path = os.path.dirname(__file__)
|
||||
eos = wic_path.find('scripts') + len('scripts')
|
||||
eos = wic_path.rfind('scripts') + len('scripts')
|
||||
scripts_path = wic_path[:eos]
|
||||
self.scripts_path = scripts_path
|
||||
self.plugin_dir = scripts_path + PLUGIN_DIR
|
||||
|
|
Loading…
Reference in New Issue
Block a user