cargo: fmt

This commit is contained in:
Muhammad Nauman Raza 2024-03-22 21:13:30 +00:00
parent e1ae1ec76b
commit 06731de609

View file

@ -1,6 +1,6 @@
use std::{fs, path, process};
use clap::Parser;
use colored::Colorize;
use std::{fs, path, process};
#[derive(Parser, Debug)]
#[command(version, about, long_about = None, author)]
@ -19,7 +19,10 @@ fn main() -> std::io::Result<()> {
if args.targets.is_empty() {
println!("{} no arguments passed", "error:".red().bold());
println!("{} try 'vpr -h' for more information", "note:".cyan().bold());
println!(
"{} try 'vpr -h' for more information",
"note:".cyan().bold()
);
process::exit(0);
}
@ -36,7 +39,11 @@ fn main() -> std::io::Result<()> {
let _ = fs::remove_file(target);
}
} else {
println!("{} the specified target does not exist {}", "error:".red().bold(), target.yellow());
println!(
"{} the specified target does not exist {}",
"error:".red().bold(),
target.yellow()
);
}
}