Fix not to quotemeta hardcoded flag #2159

This commit is contained in:
Ilia Ross
2025-10-05 01:17:28 +03:00
parent 1caf80bbc1
commit 8957333dca

View File

@@ -50,7 +50,7 @@ if ($action ne '-b' && $action ne '-k') {
$types .= " ".join(' ', @extra) ;
}
}
my $args = quotemeta($action)." ".$types." ".quotemeta($recursive);
my $args = quotemeta($action)." ".$types." ".$recursive;
$args =~ s/\s+/ /g;
$args = &trim($args);
foreach my $file (@files) {