forked from josch/mmdebstrap
fix syntax for perltidy
This commit is contained in:
parent
075645289f
commit
12f41ad33f
1 changed files with 5 additions and 4 deletions
|
@ -3501,16 +3501,17 @@ sub main() {
|
||||||
while (my $entry = readdir $dh) {
|
while (my $entry = readdir $dh) {
|
||||||
foreach
|
foreach
|
||||||
my $hook ('setup', 'extract', 'essential', 'customize') {
|
my $hook ('setup', 'extract', 'essential', 'customize') {
|
||||||
if ($entry =~ m/^\Q$hook\E/ and -x "$opt_value/$entry") {
|
if ($entry =~ m/^\Q$hook\E/ and -x "$opt_value/$entry") {
|
||||||
push @{$scripts{$hook}}, "$opt_value/$entry";
|
push @{ $scripts{$hook} }, "$opt_value/$entry";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir($dh);
|
closedir($dh);
|
||||||
# add the sorted list associated with each key to the respective
|
# add the sorted list associated with each key to the respective
|
||||||
# list of hooks
|
# list of hooks
|
||||||
foreach my $hook (keys %scripts) {
|
foreach my $hook (keys %scripts) {
|
||||||
push @{ $options->{"${hook}_hook"} }, (sort @{$scripts{$hook}});
|
push @{ $options->{"${hook}_hook"} },
|
||||||
|
(sort @{ $scripts{$hook} });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
# Sometimes --simulate fails even though non-simulate succeeds because
|
# Sometimes --simulate fails even though non-simulate succeeds because
|
||||||
|
|
Loading…
Reference in a new issue