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

Fix handling of empty src dir

This commit is contained in:
Clifford Wolf 2017-01-22 17:36:21 +01:00
parent fee0f4c38c
commit 37951b465a

View file

@ -227,6 +227,8 @@ class SbyJob:
self.logfile.flush()
def copy_src(self):
os.makedirs(self.workdir + "/src")
for dstfile, srcfile in self.files.items():
dstfile = self.workdir + "/src/" + dstfile