summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-10-18 23:33:20 +0200
committerGitHub <noreply@github.com>2023-10-18 23:33:20 +0200
commit078de99c61f99be71daebed8dfa7d0790e1da4b9 (patch)
treeac90bd9390b0c74b290f3cb920df9b94833640f3
parent02a122c2e75e3e4ca98da62e34ee861595cb670a (diff)
parent3c4fde46106efab749ab9af9fe76f5e75779ef5d (diff)
Merge pull request #1727 from markgreene74/fix/clippy-exercises-failing-after-rename
fix(watch): update the CLIPPY_CARGO_TOML_PATH
-rw-r--r--src/exercise.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exercise.rs b/src/exercise.rs
index c7b5672..664b362 100644
--- a/src/exercise.rs
+++ b/src/exercise.rs
@@ -12,7 +12,7 @@ const RUSTC_EDITION_ARGS: &[&str] = &["--edition", "2021"];
const RUSTC_NO_DEBUG_ARGS: &[&str] = &["-C", "strip=debuginfo"];
const I_AM_DONE_REGEX: &str = r"(?m)^\s*///?\s*I\s+AM\s+NOT\s+DONE";
const CONTEXT: usize = 2;
-const CLIPPY_CARGO_TOML_PATH: &str = "./exercises/clippy/Cargo.toml";
+const CLIPPY_CARGO_TOML_PATH: &str = "./exercises/22_clippy/Cargo.toml";
// Get a temporary file name that is hopefully unique
#[inline]