Skip to content

Commit

Permalink
added kwargs argument to builder subparser in main for builder comman…
Browse files Browse the repository at this point in the history
…d to accept kwargs as argument
  • Loading branch information
davidkim1 committed Oct 3, 2023
1 parent 4a69952 commit f22e13a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions regolith/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,14 @@ def create_parser():
"the build will be for only those people",
default=None,
)
bldp.add_argument(
"--kwargs",
nargs='+',
dest="kwargs",
help="pass a specific command to build a specific task "
"if it exists",
default=None,
)

# deploy subparser
depp = subp.add_parser(
Expand Down

0 comments on commit f22e13a

Please sign in to comment.