From be20c2afa9174860cbbc6a18d7f96457a70b0886 Mon Sep 17 00:00:00 2001 From: Kitlith Date: Thu, 25 Jun 2020 19:43:17 -0700 Subject: [PATCH] fix(justfile): rustup uses 'component add' instead of 'add component' --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 77d60fa5..1d98a04e 100644 --- a/justfile +++ b/justfile @@ -25,8 +25,8 @@ run-tests: cargo bench @lint: - rustup add component clippy - rustup add component rustfmt + rustup component add clippy + rustup component add rustfmt cargo clippy --lib --features "yaml unstable" -- -D warnings cargo clippy --tests --examples --features "yaml unstable" cargo fmt -- --check