Skip to content

Commit

Permalink
fix no wasm opt argument
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Sep 7, 2023
1 parent b155507 commit 22b0ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/cli_contracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def do_reproducible_build(args: Any):
utils.ensure_folder(output_path)

options = args.__dict__
no_wasm_opt = options.get("no-wasm-opt", True)
no_wasm_opt = options.get("no_wasm_opt", True)

if not is_docker_installed():
raise DockerMissingError()
Expand Down

0 comments on commit 22b0ee9

Please sign in to comment.