build(utils/dirsymlink.pl): Fixed handling of hidden files.

This commit is contained in:
Stephan Barth 2024-11-11 13:47:05 +01:00
parent dfea27ad41
commit 845769cdc0

View File

@ -7,7 +7,7 @@ my ($shadowdir, @keepdirs) = @ARGV;
mkdir($shadowdir);
system(qq#rm -f "$shadowdir"/*#);
system(qq#rm -f "$shadowdir"/* "$shadowdir"/.*#);
for my $k(@keepdirs) {
unlink("$shadowdir/$k");