mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Do not overwrite config.sby in reusedir mode
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
ef26dff799
commit
93a5dd0641
|
@ -191,9 +191,10 @@ class SbyJob:
|
||||||
print(line, file=self.logfile)
|
print(line, file=self.logfile)
|
||||||
self.logfile.flush()
|
self.logfile.flush()
|
||||||
|
|
||||||
with open("%s/config.sby" % workdir, "w") as f:
|
if not reusedir:
|
||||||
for line in sbyconfig:
|
with open("%s/config.sby" % workdir, "w") as f:
|
||||||
print(line, file=f)
|
for line in sbyconfig:
|
||||||
|
print(line, file=f)
|
||||||
|
|
||||||
def taskloop(self):
|
def taskloop(self):
|
||||||
for task in self.tasks_pending:
|
for task in self.tasks_pending:
|
||||||
|
|
Loading…
Reference in a new issue