Ignore:
Timestamp:
05/06/10 16:16:06 (14 years ago)
Author:
mmaipsl
Message:

A bug occur on linux hosts when we pass an environment variable that contains empty string through
process.
Then I have changed TsTask? for "empty" string if Dimension is empty for backward compatibility and
come back to the real empty string in AA_create_ts after setting default value.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_post/libIGCM_post.ksh

    r257 r267  
    379379                echo 
    380380                # 
    381                 TsTask=${Dimension} 
     381                if [ X${Dimension} = X ] ; then 
     382                    TsTask="empty" 
     383                else 
     384                    TsTask=${Dimension} 
     385                fi 
    382386                # 
    383387                if [ ${RebuildFrequency} = true ] && [ ${DRYRUN} -le 1 ] ; then 
Note: See TracChangeset for help on using the changeset viewer.