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

Merge pull request #267 from jix/sby-status-errormsg

Improved CLI behavior when not specifying a config or existing workdir
This commit is contained in:
Jannis Harder 2024-03-11 17:03:59 +01:00 committed by GitHub
commit c73cd3eeea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -61,6 +61,9 @@ status_reset = args.status_reset
if status_show or status_reset:
target = workdir_prefix or workdir or sbyfile
if target is None:
print("ERROR: Specify a .sby config file or working directory to use --status.")
sys.exit(1)
if not os.path.isdir(target) and target.endswith('.sby'):
target = target[:-4]
if not os.path.isdir(target):
@ -294,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)