WXAFKN6JL3LRIRTTW2Q7UQIZBZSAHYIUVTPWKMK2GK2W3GZ44XHAC
if let Ok(opts) = Opts::try_parse() {
if let Err(e) = run(opts).await {
writeln!(std::io::stderr(), "Error: {}", e).unwrap_or(());
std::process::exit(1);
match external_command() {
Ok(false) => {
let opts = Opts::parse();
if let Err(e) = run(opts).await {
writeln!(std::io::stderr(), "Error: {}", e).unwrap_or(());
std::process::exit(1);
}
}
Ok(true) => (),
Err((cmd, e)) => {
writeln!(
std::io::stderr(),
"Error while trying to run {:?}: {}",
cmd,
e
)
.unwrap_or(());