Skip to content

Commit

Permalink
Make certain arguments required in dev script
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Velickovic <[email protected]>
  • Loading branch information
Ivan-Velickovic committed Sep 13, 2023
1 parent 337a5bb commit a015325
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ def main():
)
parser.add_argument(
"--board",
help="Target board"
help="Target board",
required=True
)
parser.add_argument(
"--example",
help="Example to build"
help="Example to build",
required=True
)
args = parser.parse_args()

Expand Down

0 comments on commit a015325

Please sign in to comment.