mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01: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: f30c486c17060d2f21618612804a692512ad6a57) (From OE-Core rev: d34a0fd910babe233d89ad9c1e9d61dcec1c4b63) Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
426eb13fa9
commit
b17a009b65
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user