change getxcatdocs to not exit when it hits an error converting one of the wiki pages
This commit is contained in:
parent
1170cda7f4
commit
75f28121ec
@ -172,7 +172,7 @@ sub runwget {
|
||||
if (/URL:https*:\/\/sourceforge\.net.+\s+->\s+\"(\S+)\"\s+\[/) { print "Downloaded $1.\n"; }
|
||||
else { print; }
|
||||
}
|
||||
close OUT || die "Error running $cmd: $! $?";
|
||||
close OUT || print "Error running $cmd: $! $?\n";
|
||||
}
|
||||
|
||||
# Run the xhtml2pdf cmd and filter out some of the silly output
|
||||
@ -186,5 +186,5 @@ sub runh2p {
|
||||
next if /^Converting\ssourceforge.net/;
|
||||
print;
|
||||
}
|
||||
close OUT || die "Error running $cmd: $! $?";
|
||||
close OUT || print "Error running $cmd: $! $?\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user