From 9dbfb8ce4e26ca47db3db30ec1e7637a6a351ddf Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 28 Dec 2023 10:38:07 +0100 Subject: [PATCH] Make check.sh more quiet --- scripts/check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check.sh b/scripts/check.sh index eb9cee8c..ab3063d9 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -9,8 +9,8 @@ set -x # Checks all tests, lints etc. # Basically does what the CI does. -cargo install cargo-cranky # Uses lints defined in Cranky.toml. See https://github.com/ericseppanen/cargo-cranky -cargo install typos-cli +cargo install --quiet cargo-cranky # Uses lints defined in Cranky.toml. See https://github.com/ericseppanen/cargo-cranky +cargo install --quiet typos-cli # web_sys_unstable_apis is required to enable the web_sys clipboard API which eframe web uses, # as well as by the wasm32-backend of the wgpu crate.