3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Windows specific fixes

This commit is contained in:
Miodrag Milanovic 2021-03-22 16:48:33 +01:00
parent 1ffef12cf1
commit ecf7b8f1b0

View file

@ -64,11 +64,14 @@ class SbyTask:
"{" : "(", "{" : "(",
"}" : ")", "}" : ")",
} }
parts = cmdline.split("'")
cmdline_copy = cmdline for i in range(len(parts)):
for u, w in replacements.items(): if i % 2 == 0:
cmdline_copy = cmdline_copy.replace(u, w) cmdline_copy = parts[i]
self.cmdline = cmdline_copy for u, w in replacements.items():
cmdline_copy = cmdline_copy.replace(u, w)
parts[i] = cmdline_copy
self.cmdline = '"'.join(parts)
self.logfile = logfile self.logfile = logfile
self.noprintregex = None self.noprintregex = None
self.notify = [] self.notify = []