From f2f7ddc287a5bf86d9388464550f503239ac6dea Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 3 Aug 2024 13:22:10 +1000 Subject: [PATCH] Fix typo in args.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- crates/bin/src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bin/src/args.rs b/crates/bin/src/args.rs index f3721437..a8604a18 100644 --- a/crates/bin/src/args.rs +++ b/crates/bin/src/args.rs @@ -619,7 +619,7 @@ You cannot use --{option} and specify multiple packages at the same time. Do one pkg_url: opts.pkg_url, pkg_fmt: opts.pkg_fmt, bin_dir: opts.bin_dir, - disabled_strategies: (!opts.disable_strategies.is_empty() || has_strategies_ovrrride).then(|| { + disabled_strategies: (!opts.disable_strategies.is_empty() || has_strategies_override).then(|| { opts.disable_strategies .into_iter() .map(|strategy| strategy.0)