From 7b9e3b669946df5c0fc0b6087c7a136d5d91d8e2 Mon Sep 17 00:00:00 2001 From: Galfour Date: Mon, 10 Jun 2019 22:08:56 +0000 Subject: [PATCH] add dry-run to the bin commands --- src/bin/cli.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/cli.ml b/src/bin/cli.ml index cec0b7ee1..4c97be407 100644 --- a/src/bin/cli.ml +++ b/src/bin/cli.ml @@ -131,4 +131,4 @@ let dry_run = let docs = "Subcommand: run a smart-contract with the given storage and input." in (term , Term.info ~docs cmdname) -let () = Term.exit @@ Term.eval_choice main [compile_file ; compile_parameter ; compile_storage] +let () = Term.exit @@ Term.eval_choice main [compile_file ; compile_parameter ; compile_storage ; dry_run ]