aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/main.rs
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2023-03-15 20:32:58 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-15 20:32:58 +0100
commit88b435c2f8f0d41325eb5540fed156b7d3380c98 (patch)
tree5375fa0bed6e59fef74be2912cbd9842328a11a3 /xtask/src/main.rs
parent96aa385b556450a9af125fec6a9d0ae74907c2ce (diff)
xtask: Fix cargo fmt logmsg
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r--xtask/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 35e2a01..a7fd1d3 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -187,12 +187,12 @@ fn main() -> anyhow::Result<()> {
match cli.command {
Commands::FormatCheck(args) => {
- info!("Running cargo fmt: {args:?}");
+ info!("Running cargo fmt --check: {args:?}");
let check_only = true;
cargo_format(&cargologlevel, &args, check_only)?;
}
Commands::Format(args) => {
- info!("Running cargo fmt --check: {args:?}");
+ info!("Running cargo fmt: {args:?}");
let check_only = false;
cargo_format(&cargologlevel, &args, check_only)?;
}