View | Details | Raw Unified | Return to issue 59882
Collapse All | Expand All

(-)postprocess/checkdeliver/checkdeliver.pl (+7 lines)
Lines 106-111 Link Here
106
    my $pattern = "$solverdir/$platform/inc";
106
    my $pattern = "$solverdir/$platform/inc";
107
    $pattern .= "$milestoneext" if ( $milestoneext );
107
    $pattern .= "$milestoneext" if ( $milestoneext );
108
    $pattern .= "/*/deliver.log";
108
    $pattern .= "/*/deliver.log";
109
110
    if ( $^O =~ /cygwin/i && $ENV{'USE_SHELL'} eq "4nt" )
111
    {   # glob from cygwin's perl needs $pattern to use only slashes.
112
        # (DOS style path are OK as long as slashes are used.)
113
        $pattern =~ s/\\/\//g;
114
    }
115
109
    @files = glob( $pattern );
116
    @files = glob( $pattern );
110
    # do not check modules not yet built
117
    # do not check modules not yet built
111
    foreach my $exceptionpattern ( @exceptionmodlist ) {
118
    foreach my $exceptionpattern ( @exceptionmodlist ) {

Return to issue 59882