View | Details | Raw Unified | Return to bug 38299
Collapse All | Expand All

(-)a/C4/Installer.pm (-1 / +1 lines)
Lines 743-750 sub run_db_rev { Link Here
743
        );
743
        );
744
    }
744
    }
745
    catch {
745
    catch {
746
        say_failure( $outfh, "ERROR: " . $_ );
747
        $error = $_;
746
        $error = $_;
747
        say_failure( $outfh, "ERROR: " . $error );
748
    };
748
    };
749
749
750
    close $outfh;
750
    close $outfh;
(-)a/installer/data/mysql/updatedatabase.pl (-3 lines)
Lines 24302-24308 unless ( $ENV{HTTP_HOST} ) { # Is that correct? Link Here
24302
    }
24302
    }
24303
    for my $e ( @{ $report->{error} } ) {
24303
    for my $e ( @{ $report->{error} } ) {
24304
        say Encode::encode_utf8(join "\n", @{$e->{output}});
24304
        say Encode::encode_utf8(join "\n", @{$e->{output}});
24305
        #say_failure( undef, Encode::encode_utf8("ERROR - " . $e->{error}) );
24306
        $error_code = 1;
24305
        $error_code = 1;
24307
    }
24306
    }
24308
24307
Lines 24313-24319 unless ( $ENV{HTTP_HOST} ) { # Is that correct? Link Here
24313
    }
24312
    }
24314
    for my $e ( @{ $report->{error} } ) {
24313
    for my $e ( @{ $report->{error} } ) {
24315
        say Encode::encode_utf8(join "\n", @{$e->{output}});
24314
        say Encode::encode_utf8(join "\n", @{$e->{output}});
24316
        #say_failure( undef, Encode::encode_utf8("ERROR - " . $e->{error}) );
24317
        $error_code = 1;
24315
        $error_code = 1;
24318
    }
24316
    }
24319
    exit $error_code;
24317
    exit $error_code;
24320
- 

Return to bug 38299