update uvprojx file path to abspath
This commit is contained in:
parent
a77e99f7c2
commit
c38e2bc6ec
|
@ -528,7 +528,7 @@ def TargetEclipse(env, reset=False, prj_name=None):
|
||||||
if len(items) > 0:
|
if len(items) > 0:
|
||||||
for item in items:
|
for item in items:
|
||||||
if item.endswith(".uvprojx") or item.endswith(".uvproj"):
|
if item.endswith(".uvprojx") or item.endswith(".uvproj"):
|
||||||
file = item
|
file = os.path.abspath(item)
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
file = ""
|
file = ""
|
||||||
|
|
Loading…
Reference in New Issue