Fix dir separator on windows

Change-Id: I4afe534c826127e11163f716612d62ea44705448
This commit is contained in:
wangxiangqing 2022-02-12 11:14:34 +08:00 committed by John Preston
parent b39e4a3138
commit 1ddc0c1977
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ os.chdir(scriptPath + '/../../../..')
dirSep = '\\' 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'
rootDir = os.getcwd()