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

Fix default argument for tasknames

This commit is contained in:
Hans Anderson 2019-06-24 18:35:52 -06:00
parent 9ad0ea3e78
commit 597beb6380

View file

@ -41,6 +41,7 @@ parser.add_argument("-b", action="store_true", dest="backup",
parser.add_argument("-t", action="store_true", dest="tmpdir",
help="run in a temporary workdir (remove when finished)")
parser.add_argument("-T", metavar="<taskname>", action="append", dest="tasknames",
default=list(),
help="add taskname (useful when sby file is read from stdin, ignored if tasknames are given as positional arguments)")
parser.add_argument("-E", action="store_true", dest="throw_err",
help="throw an exception (incl stack trace) for most errors")