Changeset 678 for palm/trunk/SCRIPTS/mbuild
- Timestamp:
- Feb 2, 2011 2:31:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mbuild
r635 r678 1043 1043 if [[ "$modules" != "" ]] 1044 1044 then 1045 module_calls="module load ${modules};" 1045 if [[ $remote_host = lctit ]] 1046 then 1047 module_calls=". $modules" 1048 else 1049 module_calls="module load ${modules};" 1050 fi 1046 1051 1047 1052 # bugfix for wrong netcdf module … … 1203 1208 if [[ "$modules" != "" ]] 1204 1209 then 1205 module_calls="module load ${modules};" 1210 if [[ $remote_host = lctit ]] 1211 then 1212 module_calls=". $modules" 1213 else 1214 module_calls="module load ${modules};" 1215 fi 1206 1216 1207 1217 # bugfix for wrong netcdf module … … 1263 1273 if [[ "$modules" != "" ]] 1264 1274 then 1265 module load ${modules} 1275 if [[ $remote_host = lctit ]] 1276 then 1277 . $modules 1278 else 1279 module load ${modules} 1280 fi 1266 1281 fi 1267 1282
Note: See TracChangeset
for help on using the changeset viewer.