Changeset 79

Show
Ignore:
Timestamp:
10/16/06 20:18:18 (7 years ago)
Author:
max
Message:

Don't die on config file failure.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • shepherd

    r77 r79  
    110110# --------------------------------------------------------------------------- 
    111111 
     112$| = 1; 
     113 
    112114print ucfirst($progname) . " v$version\n\n"; 
    113115#print "Cwd: $CWD.\n"; 
     
    12351237    if ($@ and !$opt->{configure}) 
    12361238    { 
    1237         die "\nError in $name file!\nDetails:\n$@"; 
     1239        warn "\nERROR in $name file! Details:\n$@"; 
     1240        print "You may wish to CTRL-C and fix this.\n\nContinuing anyway in:"; 
     1241        foreach (1 .. 5) 
     1242        { 
     1243            print " " . (6 - $_); 
     1244            sleep 1; 
     1245        } 
     1246        print "\n"; 
    12381247    } 
    12391248}