forked from lix-project/hydra
* Top-level: don't exit on errors.
This commit is contained in:
parent
d9424b6364
commit
0da0384753
|
@ -467,7 +467,10 @@ if (scalar @ARGV == 2) {
|
|||
|
||||
|
||||
while (1) {
|
||||
checkJobs;
|
||||
eval {
|
||||
checkJobs;
|
||||
};
|
||||
if ($@) { print "$@"; }
|
||||
print "sleeping...\n";
|
||||
sleep 30;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue