Fix dir separator on windows
Change-Id: I4afe534c826127e11163f716612d62ea44705448
This commit is contained in:
parent
b39e4a3138
commit
1ddc0c1977
|
@ -27,7 +27,7 @@ os.chdir(scriptPath + '/../../../..')
|
||||||
|
|
||||||
dirSep = '\\' if win else '/'
|
dirSep = '\\' if win else '/'
|
||||||
pathSep = ';' if win else ':'
|
pathSep = ';' if win else ':'
|
||||||
libsLoc = 'Libraries' if not win64 else 'Libraries/win64'
|
libsLoc = 'Libraries' if not win64 else ('Libraries' + dirSep + 'win64')
|
||||||
keysLoc = 'cache_keys'
|
keysLoc = 'cache_keys'
|
||||||
|
|
||||||
rootDir = os.getcwd()
|
rootDir = os.getcwd()
|
||||||
|
|
Loading…
Reference in New Issue