cargo: fmt

This commit is contained in:
Muhammad Nauman Raza 2024-03-26 13:55:15 +00:00
parent c966bc6827
commit ecba73ebbc

View file

@ -1,7 +1,7 @@
use anyhow::{Context, Result};
use clap::Parser;
use colored::Colorize;
use std::{fs, path, process};
use anyhow::{Context, Result};
#[derive(Parser, Debug)]
#[command(version, about, long_about = None, author)]
@ -27,7 +27,6 @@ fn vaporise() -> Result<()> {
process::exit(0);
}
for target in args.targets.iter() {
if !args.no_preserve && (target == "/" || target == "~") {
println!("{}: you're trying to delete an important directory ({})! specify '{}' if you really want to do this", "error".red().bold(), "--no-preserve".yellow(), target);