Skip to content

Commit

Permalink
Fix CLI help / description (reproducible builds).
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed Aug 28, 2024
1 parent ff8f07c commit 216a407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/cli_contracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def setup_parser(args: List[str], subparsers: Any) -> Any:
_add_build_options_args(sub)
sub.add_argument("--docker-image", required=True, type=str,
help="the docker image tag used to build the contract")
sub.add_argument("--contract", type=str, help="relative path of the contract in the project")
sub.add_argument("--contract", type=str, help="contract to build (contract name, as found in Cargo.toml)")
sub.add_argument("--no-docker-interactive", action="store_true", default=False)
sub.add_argument("--no-docker-tty", action="store_true", default=False)
sub.add_argument("--no-default-platform", action="store_true", default=False,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "multiversx-sdk-cli"
version = "9.6.1"
version = "9.6.2"
authors = [
{ name="MultiversX" },
]
Expand Down

0 comments on commit 216a407

Please sign in to comment.