treat minus for output target file path as stdout

pull/202/head
Sunshine 4 years ago
parent c1fec5967d
commit 73c35eaccb
No known key found for this signature in database
GPG Key ID: B80CA68703CD8AB1

@ -26,7 +26,7 @@ enum Output {
impl Output {
fn new(file_path: &str) -> Result<Output, Error> {
if file_path.is_empty() {
if file_path.is_empty() || file_path.eq("-") {
Ok(Output::Stdout(io::stdout()))
} else {
Ok(Output::File(fs::File::create(file_path)?))

Loading…
Cancel
Save