Skip to content

Commit

Permalink
fixed unsupport
Browse files Browse the repository at this point in the history
  • Loading branch information
dyldonahue committed Oct 17, 2024
1 parent 596bb1d commit 99dcaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ner_environment/build_system/build_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def unsupported_option_cb(value:bool):
# ==============================================================================

@app.command(help="Build the project with GCC ARM Toolchain and Make")
def build(profile: str = typer.Option("release", "--profile", "-p", callback=unsupported_option_cb, help="(planned) Specify the build profile (e.g., debug, release)", show_default=True),
def build(profile: str = typer.Option(None, "--profile", "-p", callback=unsupported_option_cb, help="(planned) Specify the build profile (e.g., debug, release)", show_default=True),
clean: bool = typer.Option(False, "--clean", help="Clean the build directory before building", show_default=True)):

if clean:
Expand Down

0 comments on commit 99dcaf7

Please sign in to comment.