Skip to content

Commit a80a115

Browse files
authoredMar 6, 2024
Avoid sigpipe errors without pulling in libc (#45)
Signed-off-by: clux <sszynrae@gmail.com>
1 parent a6badaa commit a80a115

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
 

‎.github/workflows/check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- macos
2626
toolchain:
2727
- stable
28-
- 1.70.0
28+
- 1.76.0
2929

3030
name: Test on ${{ matrix.platform }} with ${{ matrix.toolchain }}
3131
runs-on: "${{ matrix.platform }}-latest"

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
readme = "./README.md"
1010
repository = "https://github.com/clux/whyq"
1111
edition = "2021"
12-
rust-version = "1.70.0"
12+
rust-version = "1.76.0"
1313
categories = ["command-line-utilities", "parsing"]
1414

1515

‎yq.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,9 @@ fn main() -> Result<()> {
296296
let f = args.file.unwrap(); // required
297297
std::fs::write(f, output + "\n")?;
298298
} else {
299-
println!("{}", output);
299+
// write result to stdout ignoring SIGPIPE errors
300+
// https://github.com/rust-lang/rust/issues/46016
301+
let _ = writeln!(std::io::stdout(), "{output}");
300302
}
301303
Ok(())
302304
}

0 commit comments

Comments
 (0)