mirror of
https://github.com/fspc/gbootroot.git
synced 2025-02-22 08:33:24 -05:00
Had to remove escapes for info/* check.
This commit is contained in:
parent
13359e24ef
commit
a1d94aba40
@ -134,7 +134,9 @@ $/ = "\n";
|
|||||||
my @info;
|
my @info;
|
||||||
foreach my $rp (@required_packages) {
|
foreach my $rp (@required_packages) {
|
||||||
$rp = (split(/_/,$rp))[0];
|
$rp = (split(/_/,$rp))[0];
|
||||||
|
# Get rid of the escape from the previous invocation.
|
||||||
|
$rp =~ s/\\//g if $rp =~ /\\+/g;
|
||||||
|
|
||||||
# Figure out info/* .. this covers it for now.
|
# Figure out info/* .. this covers it for now.
|
||||||
if (-f "$info/$rp.preinst") {
|
if (-f "$info/$rp.preinst") {
|
||||||
push(@info,"$info/$rp.preinst\n");
|
push(@info,"$info/$rp.preinst\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user