fix windows build
This commit is contained in:
parent
990ae11f62
commit
d3b1abb61e
|
@ -205,7 +205,7 @@ def removeDir(folder):
|
|||
def setVar(key, multilineValue):
|
||||
singlelineValue = ' '.join(multilineValue.replace('\n', '').split());
|
||||
if win:
|
||||
return 'SET ' + key + '="' + singlelineValue + '"';
|
||||
return 'SET "' + key + '=' + singlelineValue + '"';
|
||||
return key + '="' + singlelineValue + '"';
|
||||
|
||||
def filterByPlatform(commands):
|
||||
|
|
Loading…
Reference in New Issue