diff --git a/src/main.rs b/src/main.rs index 57c0456..50e092c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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);