fix windows build

This commit is contained in:
Kolya 2024-03-08 13:13:44 -08:00 committed by John Preston
parent 990ae11f62
commit d3b1abb61e

View file

@ -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):