Skip to content

Commit 3c4fde4

Browse files
committed
fix(watch): update the CLIPPY_CARGO_TOML_PATH
... to reflect the changes to the exercise directory names. The path exercises/clippy replaced with exercises/22_clippy. closes #1726
1 parent 33220c5 commit 3c4fde4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exercise.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const RUSTC_EDITION_ARGS: &[&str] = &["--edition", "2021"];
1212
const RUSTC_NO_DEBUG_ARGS: &[&str] = &["-C", "strip=debuginfo"];
1313
const I_AM_DONE_REGEX: &str = r"(?m)^\s*///?\s*I\s+AM\s+NOT\s+DONE";
1414
const CONTEXT: usize = 2;
15-
const CLIPPY_CARGO_TOML_PATH: &str = "./exercises/clippy/Cargo.toml";
15+
const CLIPPY_CARGO_TOML_PATH: &str = "./exercises/22_clippy/Cargo.toml";
1616

1717
// Get a temporary file name that is hopefully unique
1818
#[inline]

0 commit comments

Comments
 (0)