mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Improve handling of comments in .sby files
This commit is contained in:
parent
6b730e7779
commit
221c8d24d7
|
@ -188,12 +188,14 @@ class SbyJob:
|
|||
with open("%s/config.sby" % workdir, "r") as f:
|
||||
for line in f:
|
||||
raw_line = line
|
||||
line = line.strip()
|
||||
if mode in ["options", "engines", "files"]:
|
||||
line = re.sub(r"\s*(\s#.*)?$", "", line)
|
||||
if line == "" or line[0] == "#":
|
||||
continue
|
||||
else:
|
||||
line = line.rstrip()
|
||||
# print(line)
|
||||
|
||||
if line == "" or line[0] == "#":
|
||||
continue
|
||||
|
||||
match = re.match(r"^\s*\[(.*)\]\s*$", line)
|
||||
if match:
|
||||
entries = match.group(1).split()
|
||||
|
|
Loading…
Reference in a new issue