Skip to content

Commit

Permalink
Make spin install verbose by default (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanv authored Jul 23, 2024
2 parents b6e6fce + 520352d commit 2216c27
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion spin/cmds/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@
default=True,
help="Install in editable mode.",
)
@click.option("-v", "--verbose", is_flag=True, help="Print detailed build output.")
@click.option(
"-v/-q",
"--verbose/--quiet",
is_flag=True,
default=True,
help="Print detailed build output.",
)
@click.option(
"--verbose-import/--no-verbose-import",
is_flag=True,
Expand Down

0 comments on commit 2216c27

Please sign in to comment.