Skip to content

Commit

Permalink
fix: vi command
Browse files Browse the repository at this point in the history
  • Loading branch information
akelch committed Feb 17, 2023
1 parent c6beee3 commit 5da5fde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This file documents any relevant changes.

## [0.7.7] - 2023-02-17
- fix: broken `viur vi` command

## [0.7.6] - 2023-02-17
- feat: download vi 4 with: `viur vi --next`

Expand Down
2 changes: 1 addition & 1 deletion src/viur_cli/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.6"
__version__ = "0.7.7"
2 changes: 1 addition & 1 deletion src/viur_cli/vi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@cli.command(context_settings={"ignore_unknown_options": True})
@click.argument("version", default="latest")
@click.option('--next', '-n', is_flag=True)
@click.option('--next', '-n', 'next_', is_flag=True, default=False)
def vi(version, next_):

if next_:
Expand Down

0 comments on commit 5da5fde

Please sign in to comment.