From 766f3c50ec20c9b3fbf95bddf9fc095ce65cef78 Mon Sep 17 00:00:00 2001 From: mo8it Date: Thu, 1 Aug 2024 01:07:56 +0200 Subject: [PATCH] Add hint to run `dev check` again after `dev update` --- src/dev/check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dev/check.rs b/src/dev/check.rs index 2090dab8..1087138c 100644 --- a/src/dev/check.rs +++ b/src/dev/check.rs @@ -41,7 +41,7 @@ fn check_cargo_toml( bail!("The file `dev/Cargo.toml` is outdated. Please run `cargo run -- dev update` to update it"); } - bail!("The file `Cargo.toml` is outdated. Please run `rustlings dev update` to update it"); + bail!("The file `Cargo.toml` is outdated. Please run `rustlings dev update` to update it. Then run `rustlings dev check` again"); } Ok(())