mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-19 15:47:11 +02:00
Fix dir separator on windows
Change-Id: I4afe534c826127e11163f716612d62ea44705448
This commit is contained in:
parent
b39e4a3138
commit
1ddc0c1977
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue