File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 25
25
- macos
26
26
toolchain :
27
27
- stable
28
- - 1.70 .0
28
+ - 1.76 .0
29
29
30
30
name : Test on ${{ matrix.platform }} with ${{ matrix.toolchain }}
31
31
runs-on : " ${{ matrix.platform }}-latest"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "Apache-2.0"
9
9
readme = " ./README.md"
10
10
repository = " https://github.com/clux/whyq"
11
11
edition = " 2021"
12
- rust-version = " 1.70 .0"
12
+ rust-version = " 1.76 .0"
13
13
categories = [" command-line-utilities" , " parsing" ]
14
14
15
15
Original file line number Diff line number Diff line change @@ -296,7 +296,9 @@ fn main() -> Result<()> {
296
296
let f = args. file . unwrap ( ) ; // required
297
297
std:: fs:: write ( f, output + "\n " ) ?;
298
298
} 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}" ) ;
300
302
}
301
303
Ok ( ( ) )
302
304
}
You can’t perform that action at this time.
0 commit comments