Skip to content

Commit

Permalink
feat: add short options -v and -O to the CLI (#3695)
Browse files Browse the repository at this point in the history
this commit adds `-v` and `-O` as aliases for `--verbose` and
`--optimize`, respectively.
  • Loading branch information
charles-cooper authored Dec 16, 2023
1 parent c6f457a commit 0cbc94d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vyper/cli/vyper_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def _parse_args(argv):
)
parser.add_argument("--no-optimize", help="Do not optimize", action="store_true")
parser.add_argument(
"-O",
"--optimize",
help="Optimization flag (defaults to 'gas')",
choices=["gas", "codesize", "none"],
Expand All @@ -125,6 +126,7 @@ def _parse_args(argv):
type=int,
)
parser.add_argument(
"-v",
"--verbose",
help="Turn on compiler verbose output. "
"Currently an alias for --traceback-limit but "
Expand Down

0 comments on commit 0cbc94d

Please sign in to comment.