mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-07-19 20:59:02 +02:00
setup-config: fix another os.remove() call
The remove method is in the top-level os module, not os.path - I missed this call last time... Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This commit is contained in:
parent
c4fd38e466
commit
19ebd0492a
|
@ -68,7 +68,7 @@ except OSError as e:
|
|||
|
||||
sdkextraconf = os.path.join(builddir, "conf", "sdk-extra.conf")
|
||||
if os.path.exists(sdkextraconf):
|
||||
os.path.remove(sdkextraconf)
|
||||
os.remove(sdkextraconf)
|
||||
|
||||
if contains(["BUILD_HISTORY_DIR", "build-history-targets", "BUILD_HISTORY_REPO"], ourconfig):
|
||||
if target in ourconfig["build-history-targets"]:
|
||||
|
|
Loading…
Reference in New Issue
Block a user