Do not panic when failing to decode lines from external stdout (#1364)

This commit is contained in:
Jason Gedge
2020-02-10 10:37:48 -05:00
committed by GitHub
parent dc50e61f26
commit a29d52158e
4 changed files with 42 additions and 8 deletions

View File

@ -0,0 +1,3 @@
fn main() {
std::env::args().skip(1).for_each(|arg| print!("{}", arg));
}