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

Print a message when SBY is waiting for a config on stdin

This commit is contained in:
Jannis Harder 2024-03-11 16:35:03 +01:00
parent fd381ade05
commit cba77083c3

View file

@ -297,6 +297,8 @@ def read_sbyconfig(sbydata, taskname):
sbydata = list()
if sbyfile is None:
print("Reading .sby configuration from stdin:")
with (open(sbyfile, "r") if sbyfile is not None else sys.stdin) as f:
for line in f:
sbydata.append(line)