File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,13 @@ _run-with-test-reqs *cmd: _before-test && _after-test
5959 {{ cmd}}
6060
6161# Run an executable
62- run bin_name * extra_args : (_run-it " --bin" bin_name extra_args)
62+ run bin_name = " " * extra_args : (_run-it " --bin" bin_name extra_args)
6363
6464# Run an example
6565teach example_name * extra_args : (_run-it " --example" example_name extra_args)
6666
6767_ run-it run_param run_param_value * extra_args :
68- {{ cargo}} run {{ package_only_flag}} {{ all_features_flag}} {{ target_tuple_flag}} {{ release_flag}} {{ run_param}} {{ run_param_value }} {{ if extra_args != ' ' { ' -- ' + extra_args } else { ' ' } }}
68+ {{ cargo}} run {{ package_only_flag}} {{ all_features_flag}} {{ target_tuple_flag}} {{ release_flag}} {{ if run_param_value != ' ' { run_param + ' ' + run_param_value } else { ' ' } }} {{ if extra_args != ' ' { ' -- ' + extra_args } else { ' ' } }}
6969
7070# Run `cargo hack clippy` for the feature powerset and rustfmt
7171tidy : clippy fmt
You can’t perform that action at this time.
0 commit comments