Improved support for projects located on a network share // Resolve #3417 , Resolve #3926 , Resolve #4102

This commit is contained in:
Ivan Kravets
2021-11-12 15:17:25 +02:00
parent 001f075a49
commit 4687665ff3
18 changed files with 67 additions and 46 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.realpath(item) for item in items]
return [os.path.abspath(item) for item in items]
def exists(_):