Skip to content

Commit

Permalink
set no wasm opt on False by deafult
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Sep 7, 2023
1 parent 22b0ee9 commit 382ebf6
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", False)

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

0 comments on commit 382ebf6

Please sign in to comment.