Changeset 13203


Ignore:
Timestamp:
08/30/12 16:39:05 (13 years ago)
Author:
Mathieu Morlighem
Message:

CHG: do not display Matlab error if there is no error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/scripts/report.sh

    r13202 r13203  
    266266
    267267#4. Error report
    268 if [ $IS_MATLAB -eq 1 ]; then
     268if [ $IS_MATLAB -eq 1 ] && [ -s matlaberror.log ]; then
    269269#Matlab {{{
    270270cat << END >> report.html
     
    282282#}}}
    283283fi
    284 if test -s petscerror.log
    285 then
     284if [ -s petscerror.log ]; then
    286285        #PETSc{{{
    287286cat << END >> report.html
Note: See TracChangeset for help on using the changeset viewer.