Changeset 4111
- Timestamp:
- Mar 26, 2022, 12:35:12 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOL/script_install/install_lmdz.sh
r4081 r4111 1 1 #!/bin/bash 2 3 #set -vx 2 4 3 5 ########################################################################### … … 51 53 \cp -f -p ~/LMDZ/pub/$1 . 52 54 else 53 wget - nv http://www.lmd.jussieu.fr/~lmdz/pub/$155 wget --no-check-certificate -nv http://www.lmd.jussieu.fr/~lmdz/pub/$1 54 56 save_pub_locally=0 55 57 if [ $save_pub_locally = 1 ] ; then # saving wget files on ~/LMDZ/pub … … 62 64 #real=r4 63 65 real=r8 66 64 67 65 68 ######################################################################### … … 552 555 echo '##########################################################' 553 556 cd $MODEL 554 myget src/modipsl _orc_cmip6.$version.tar.gz557 myget src/modipsl.$version.tar.gz 555 558 echo install_lmdz.sh wget_OK `date` 556 gunzip modipsl _orc_cmip6.$version.tar.gz557 tar xvf modipsl _orc_cmip6.$version.tar558 \rm modipsl _orc_cmip6.$version.tar559 gunzip modipsl.$version.tar.gz 560 tar xvf modipsl.$version.tar 561 \rm modipsl.$version.tar 559 562 fi 560 563 … … 900 903 cd .. 901 904 ### Adapt "bld.cfg" (add the shell): 902 whereisthatshell=$(which ${use_shell})903 echo "bld::tool::SHELL $whereisthatshell" >> bld.cfg905 #whereisthatshell=$(which ${use_shell}) 906 #echo "bld::tool::SHELL $whereisthatshell" >> bld.cfg 904 907 905 908 fi # of if [ "$pclinux" = 1 ] … … 913 916 ################################################################## 914 917 915 916 918 set +e ; svn upgrade ; set -e 919 917 920 if [ "$svn" = "last" ] ; then svnopt="" ; else svnopt="-r $svn" ; fi 918 921 if [ "$svn" != "" ] ; then 919 s vn info | grep -q 'http:'922 set +e ; svn info | grep -q 'http:' 920 923 if [ $? = 0 ] ; then 921 924 svn switch --relocate http://svn.lmd.jussieu.fr/LMDZ https://svn.lmd.jussieu.fr/LMDZ 922 925 fi 923 926 svn update $svnopt
Note: See TracChangeset
for help on using the changeset viewer.