summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
abb346b)
Ansonsten machen Tempdateien von Editoren das Programm kaputt
my $path = File::Spec->catdir('menus', $domain);
opendir my $dir, $path or die "can't open $path: $!";
my $path = File::Spec->catdir('menus', $domain);
opendir my $dir, $path or die "can't open $path: $!";
- my @files = sort grep -f "$path/$_", readdir $dir;
+ my @files = sort grep -f "$path/$_", grep /\.yaml$/, readdir $dir;
close $dir;
my $nodes = [];
close $dir;
my $nodes = [];