Changeset 3647


Ignore:
Timestamp:
Mar 12, 2020, 1:18:21 PM (4 years ago)
Author:
Laurent Fairhead
Message:

Modifications suggested by Arnaud to stop the compiling script
compile_icolmdzor.sh when/if LMDZ doesn't compile properly

Location:
LMDZ6/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/build_gcm

    r1907 r3647  
    4646${dirname}fcm build $*
    4747
     48err=$?
     49# Check error message from fcm build
     50if [ $err != 0 ] ; then
     51  # ERROR IN COMPILING
     52  echo ERROR IN COMPILING LMDZ : $err
     53  exit 1
     54fi
     55
    4856# cleanup
    4957\rm -f '.lock'
  • LMDZ6/trunk/makelmdz_fcm

    r3491 r3647  
    703703./build_gcm ${fcm_path} -j $job $full
    704704
     705err=$?
     706# Check error message from fcm build
     707if [ $err != 0 ] ; then
     708  exit 1
     709fi
     710
    705711rm -rf tmp_src
    706712rm -rf config
Note: See TracChangeset for help on using the changeset viewer.