Merge pull request #4283 from cakebaker/cp_remove_empty_line_from_version_output

cp: remove empty line from version output
This commit is contained in:
Sylvestre Ledru 2023-01-18 11:32:36 +01:00 committed by GitHub
commit 77fa199059
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -552,7 +552,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
clap::error::ErrorKind::DisplayHelp => {
app.print_help()?;
}
clap::error::ErrorKind::DisplayVersion => println!("{}", app.render_version()),
clap::error::ErrorKind::DisplayVersion => print!("{}", app.render_version()),
_ => return Err(Box::new(e.with_exit_code(1))),
};
} else if let Ok(matches) = matches {