Changeset 601


Ignore:
Timestamp:
05/27/15 13:40:38 (9 years ago)
Author:
rlacroix
Message:

Build script: forward the return code of fcm build.

This should ensure that compilation errors are properly detected by the continuous integration tool.

Location:
XIOS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • XIOS/branchs/xios-1.0/make_xios

    r475 r601  
    193193fi 
    194194 
    195  
    196 if [[ $? == 0 ]] 
     195build_exit_status=$? 
     196 
     197if [[ $build_exit_status == 0 ]] 
    197198  then 
    198199  set nothing 
     
    201202#    make 
    202203fi 
     204 
     205exit $build_exit_status 
  • XIOS/trunk/make_xios

    r591 r601  
    190190fi 
    191191 
    192  
    193 if [[ $? == 0 ]] 
     192build_exit_status=$? 
     193 
     194if [[ $build_exit_status == 0 ]] 
    194195  then 
    195196  set nothing 
     
    198199#    make 
    199200fi 
     201 
     202exit $build_exit_status 
Note: See TracChangeset for help on using the changeset viewer.