Corrected install download command

This commit is contained in:
Anthony Scemama 2016-01-21 01:28:04 +01:00
parent 0bb99ed8db
commit ec7fcc9896
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ URL_F77ZMQ="https://github.com/scemama/f77_zmq/archive/v4.1.3.tar.gz"
#######
rule download
command = wget ${url} -O ${out}.tmp -o /dev/null && mv ${out}.tmp ${out}
command = [[ -e ${out} ]] || (wget ${url} -O ${out}.tmp -o /dev/null && mv ${out}.tmp ${out})
description = Downloading ${descr}
rule install

View File

@ -152,7 +152,7 @@ END_SHELL
endif
elec_coord(elec_num+1,1) += p*time_step
elec_coord(elec_num+1,2) = E_loc
elec_coord(elec_num+1,3) = srmc_weight(i_walk)
elec_coord(elec_num+1,3) = srmc_weight(i_walk) * pop_weight_mult
do l=1,3
do i=1,elec_num+1
elec_coord_full(i,l,i_walk) = elec_coord(i,l)