We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc78eb commit 57d2948Copy full SHA for 57d2948
Makefile
@@ -150,4 +150,4 @@ dprint-check: ## Check formatting with dprint
150
echo "Installing dprint..."; \
151
cargo install dprint; \
152
fi
153
- dprint check
+ dprint check
crates/forge/src/cmd/fmt.rs
@@ -70,7 +70,7 @@ impl FmtArgs {
70
}
71
[one] if one == Path::new("-") => {
72
let mut s = String::new();
73
- io::stdin().read_to_string(&mut s).expect("Failed to read from stdin");
+ io::stdin().read_to_string(&mut s).wrap_err("failed to read from stdin")?;
74
Input::Stdin(s)
75
76
paths => {
0 commit comments