3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-16 01:45:30 +00:00

Warn on --livecsv in --status* block

This commit is contained in:
Krystine Sherwin 2025-07-08 15:47:32 +12:00
parent 48a5859a1e
commit 1d233405bf
No known key found for this signature in database

View file

@ -100,6 +100,10 @@ if status_show or status_reset or status_show_csv:
status_db.print_status_summary_csv() status_db.print_status_summary_csv()
status_db.db.close() status_db.db.close()
if status_live_csv:
print(f"WARNING: --livecsv flag found but not used.")
sys.exit(0) sys.exit(0)