aboutsummaryrefslogtreecommitdiffstats
path: root/iurt2
diff options
context:
space:
mode:
authorMarcelo Leitner <mrl@mandriva.com>2008-02-15 19:42:27 +0000
committerMarcelo Leitner <mrl@mandriva.com>2008-02-15 19:42:27 +0000
commitb3235cdf052321bc6da83f414ecad546093efaee (patch)
tree5d217281c2213f7553b50b226619ecf40f19f751 /iurt2
parent11ec0cbf7d2de6b16787e710d54c4fb1e491018f (diff)
downloadiurt-b3235cdf052321bc6da83f414ecad546093efaee.tar
iurt-b3235cdf052321bc6da83f414ecad546093efaee.tar.gz
iurt-b3235cdf052321bc6da83f414ecad546093efaee.tar.bz2
iurt-b3235cdf052321bc6da83f414ecad546093efaee.tar.xz
iurt-b3235cdf052321bc6da83f414ecad546093efaee.zip
- Do not abort on uncatched exceptions anymore.
- Fix vim syntax hilight.
Diffstat (limited to 'iurt2')
-rwxr-xr-xiurt23
1 files changed, 2 insertions, 1 deletions
diff --git a/iurt2 b/iurt2
index 15bf97a..1ac0a49 100755
--- a/iurt2
+++ b/iurt2
@@ -65,7 +65,7 @@ sub bug_handler {
$error .= backtrace() if $error;
warn "We got an uncatched exception:\n$error\n";
- exit(1);
+ #exit(1);
}
$SIG{SEGV} = sub { bug_handler(@_, 1) };
@@ -603,6 +603,7 @@ if ($config->{local_spool}) {
# Squash double slashes
$local_spool =~ s!//!!g;
+#/
plog('INFO', "local spool: $local_spool");
if (!-d "$local_spool/log") {