modified msg when dir listing is found with dont-extract

This commit is contained in:
epi
2023-04-11 18:48:18 -05:00
parent b5472f5341
commit 1ced3b5d77

View File

@@ -283,7 +283,11 @@ impl FeroxScanner {
let mut message = format!("=> {}", style("Directory listing").blue().bright());
if !self.handles.config.extract_links {
write!(message, " (add {} to scan)", style("-e").bright().yellow())?;
write!(
message,
" (remove {} to scan)",
style("--dont-extract-links").bright().yellow()
)?;
}
if !self.handles.config.force_recursion {