aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Sommrey <28217714+jo-37@users.noreply.github.com>2023-02-14 14:41:14 +0100
committerJörg Sommrey <28217714+jo-37@users.noreply.github.com>2023-02-17 16:37:54 +0100
commiteb8474ef3f72d2491117bc4e83708dd6c60daae1 (patch)
treef8eeb8e46a0cee19a3aa5279491f5366da9db673
parent3c336c6ef3744d39b7bd1bce29ac69b8b4753549 (diff)
downloadperlweeklychallenge-club-eb8474ef3f72d2491117bc4e83708dd6c60daae1.tar.gz
perlweeklychallenge-club-eb8474ef3f72d2491117bc4e83708dd6c60daae1.tar.bz2
perlweeklychallenge-club-eb8474ef3f72d2491117bc4e83708dd6c60daae1.zip
Remove redundant comment in 203/2
-rwxr-xr-xchallenge-203/jo-37/perl/ch-2.pl1
1 files changed, 0 insertions, 1 deletions
diff --git a/challenge-203/jo-37/perl/ch-2.pl b/challenge-203/jo-37/perl/ch-2.pl
index 2d6b9eadfb..b7ffe49a31 100755
--- a/challenge-203/jo-37/perl/ch-2.pl
+++ b/challenge-203/jo-37/perl/ch-2.pl
@@ -45,7 +45,6 @@ copy_dirs(@ARGV);
sub copy_dirs ($source, $target) {
find {
# Make sure the source path is not interpreted as a regex.
- # # Make sure the source path is not interpreted as a regex.
wanted => sub {-d && s/^\Q$source\E/$target/ && !-e && mkdir},
no_chdir => 1}, $source;
}