Skip to content

Commit f676ed2

Browse files
committed
Fix copy-pasted tool name
1 parent 7338710 commit f676ed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/tidy/src/ext_tool_checks.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ fn shellcheck_runner(args: &[&OsStr]) -> Result<(), Error> {
445445
}
446446

447447
let status = Command::new("shellcheck").args(args).status()?;
448-
if status.success() { Ok(()) } else { Err(Error::FailedCheck("black")) }
448+
if status.success() { Ok(()) } else { Err(Error::FailedCheck("shellcheck")) }
449449
}
450450

451451
/// Check git for tracked files matching an extension

0 commit comments

Comments
 (0)