Changeset 16


Ignore:
Timestamp:
Sep 2, 2015, 12:31:41 PM (9 years ago)
Author:
gegorbet
Message:

gridctl fix to honor any form of *.stderr,*.stdout file name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cleanup.php

    r13 r16  
    200200   foreach ( $ofiles as $ofile )
    201201   {
    202       if ( preg_match( "/^" . $gfacID . ".*stderr$/", $ofile ) )
     202      if ( preg_match( "/.*stderr$/", $ofile ) )
    203203         $fn_stderr  = $ofile;
    204       if ( preg_match( "/^" . $gfacID . ".*stdout$/", $ofile ) )
     204      if ( preg_match( "/.*stdout$/", $ofile ) )
    205205         $fn_stdout  = $ofile;
    206206//write_log( "$me:    ofile=$ofile" );
Note: See TracChangeset for help on using the changeset viewer.