Fixed an issue with calling an extra script located outside a project // Resolve #4220

This commit is contained in:
Ivan Kravets
2022-04-10 19:09:29 +03:00
parent fe6f51369e
commit 0501d55c8f
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -376,7 +376,7 @@ def GetExtraScripts(env, scope):
if not items:
return items
with fs.cd(env.subst("$PROJECT_DIR")):
return [os.path.abspath(item) for item in items]
return [os.path.abspath(env.subst(item)) for item in items]
def exists(_):