Skip to content

Commit

Permalink
Merge pull request #440 from multiversx/fix-help-cli
Browse files Browse the repository at this point in the history
Fix CLI help / description (reproducible builds)
andreibancioiu authored Aug 28, 2024
2 parents ff8f07c + 216a407 commit 0f7091f
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
@@ -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,
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"

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

0 comments on commit 0f7091f

Please sign in to comment.