Changeset 815
- Timestamp:
- Feb 3, 2012 3:05:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mrun
r807 r815 237 237 # been implemented (check_namelist_files). 238 238 # New option -z can be used to skip the check 239 239 # 03/02/12 - BjornM - namelist file check temporary disabled 240 # until severel bugs are fixed 240 241 241 242 # VARIABLENVEREINBARUNGEN + DEFAULTWERTE … … 2403 2404 2404 2405 #### PERFORM PARAMETER FILE CHECK (COUPLED RUNS ARE NOT SUPPORTED YET) 2405 if [[ $check_namelist_files == true && $fromhost == $localhost && $run_coupled_model == false ]] 2406 skip_check=true 2407 if [[ $check_namelist_files == false || $fromhost != $localhost || $run_coupled_model == true ]] 2408 then 2409 skip_check=true 2410 fi 2411 if [[ $skip_check == false ]] 2406 2412 then 2407 2413 if [[ $ocean_file_appendix == true ]] … … 2532 2538 if [[ $? != 0 ]] 2533 2539 then 2534 rm -rf $check_sources 2535 locat=check_namelist; exit 2540 printf "\n +++ error during make." 2541 answer=dummy 2542 printf "\n\n" 2543 while [[ "$answer" != c && "$answer" != C && "$answer" != a && "$answer" != A ]] 2544 do 2545 printf " >>> continue anyway (c(ontinue)/a(bort)) ? " 2546 read answer 2547 done 2548 if [[ $answer = a || $answer = A ]] 2549 then 2550 printf "\n +++ Aborting..." 2551 rm -rf $check_sources 2552 locat=normal; exit 2553 else 2554 skip_check=true 2555 fi 2536 2556 fi 2537 2557 else … … 2574 2594 printf "\n *** Skipping parameter file check." 2575 2595 fi 2576 else 2596 elif [[ $skip_check == false ]] 2597 then 2577 2598 # STARTING THE PARAMETER FILE CHECK 2578 2599 printf "\n\n *** starting parameter file check..."
Note: See TracChangeset
for help on using the changeset viewer.