Changeset 5399 for BOL/script_install/install_lmdz.sh
- Timestamp:
- Dec 10, 2024, 10:12:58 AM (2 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOL/script_install/install_lmdz.sh
r5398 r5399 365 365 366 366 function download_modipsl_tar { 367 if [[ $clean_install = 1 ]]; then367 if [[ $clean_install = 1 && -d $MODEL ]]; then 368 368 local ans 369 369 echo "$MODEL already exists. Do you want to erase it and proceed (Y/n) ? You can also rerun with \`-noclean\` to only recompile the necessary components." … … 691 691 local lmdzbranch 692 692 echo "Fetching LMDZ $svn_lmdz from the repository" 693 lmdzbranch=$(get_svn_branch "https://svn.lmd.jussieu.fr/LMDZ" "$svn_lmdz") 693 # lmdzbranch=$(get_svn_branch "https://svn.lmd.jussieu.fr/LMDZ" "$svn_lmdz") 694 lmdzbranch=$(get_svn_branch "http://svn.lmd.jussieu.fr/LMDZ" "$svn_lmdz") 694 695 echo "branch is $lmdzbranch" 695 696 cd "$MODEL/modipsl/modeles" 696 697 rm -rf LMD* 697 svn co -r "$svn_lmdz" "https://svn.lmd.jussieu.fr/LMDZ/$lmdzbranch" LMDZ 698 # svn co -r "$svn_lmdz" "https://svn.lmd.jussieu.fr/LMDZ/$lmdzbranch" LMDZ 699 svn co -r "$svn_lmdz" "http://svn.lmd.jussieu.fr/LMDZ/$lmdzbranch" LMDZ 698 700 cd - > /dev/null 699 701 fi … … 1033 1035 sed -i'' -e 's/^rad=.*$/rad=ecrad/' bin/compile 1034 1036 fi 1037 sed -i -e "s:^fcm=0:fcm=1:" bin/compile 1035 1038 echo "Running 1D/run.sh, log in $(pwd)/run1d.log" 1036 1039 ./run.sh &> "$(pwd)/run1d.log"
Note: See TracChangeset
for help on using the changeset viewer.