Skip to content

Commit

Permalink
Merge pull request #285 from gboutry/fix/configure-manifest
Browse files Browse the repository at this point in the history
Have parent configure match manifest option declaration
  • Loading branch information
hemanthnakkina committed Jul 9, 2024
2 parents 0dd9fb6 + b3b6d1d commit 0efcbc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sunbeam-python/sunbeam/commands/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,7 @@ def _keep_cmd_params(cmd: click.Command, params: dict) -> dict:
@click.option(
"-m",
"--manifest",
"manifest_path",
help="Manifest file.",
type=click.Path(exists=True, dir_okay=False, path_type=Path),
)
Expand All @@ -661,7 +662,7 @@ def _keep_cmd_params(cmd: click.Command, params: dict) -> dict:
def configure(
ctx: click.Context,
openrc: Optional[Path] = None,
manifest: Optional[Path] = None,
manifest_path: Optional[Path] = None,
accept_defaults: bool = False,
) -> None:
"""Configure cloud with some sensible defaults."""
Expand Down

0 comments on commit 0efcbc3

Please sign in to comment.