Ignore:
Timestamp:
02/06/23 10:10:12 (17 months ago)
Author:
aclsce
Message:

Modified debug run_dir functionality to copy the arch.env into the run_directory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/AA_job_debug

    r1572 r1574  
    179179#-Q- mesoipsl . /etc/profile.d/modules.sh 
    180180 
    181 . ::ENVFILE:: 
     181. ./arch.env 
    182182 
    183183module list 
    184184 
     185# Enable the copy of binary files from modipsl directory (default n) 
     186# Could be useful in case of modifications (and so recompilation) in the sources 
     187copy_executable=n 
     188 
    185189#D------------------------------------------------------ 
    186190#D- EXECUTION 
    187 #D-     - Copy binary files from modipsl directory 
     191#D-     - Copy binary files from modipsl directory (only if copy_executable=y) 
    188192#D-     - Remove of some out restart files  
    189193#D-     - Execution 
     
    192196cd ${SUBMIT_DIR} 
    193197 
     198if [ X${copy_executable} = Xy ] ; then 
    194199while read EXEIN EXEOUT ;do 
    195200 eval EXEIN=${EXEIN} 
    196201 cp ${MODIPSL}/bin/${EXEIN} ${EXEOUT} 
    197202done < components_binary.txt 
     203fi 
    198204 
    199205if [ X${SRF_comp} = Xy ] ; then 
Note: See TracChangeset for help on using the changeset viewer.