diff --git a/examples/inference/lisa_smbhb_ldc/get.sh b/examples/inference/lisa_smbhb_ldc/get.sh index 8cb31c037cc..4d7962c408b 100644 --- a/examples/inference/lisa_smbhb_ldc/get.sh +++ b/examples/inference/lisa_smbhb_ldc/get.sh @@ -4,13 +4,13 @@ for channel in A E T do strain_file=${channel}_TDI_v2.gwf test -f ${strain_file} && continue - curl -O --show-error --silent https://zenodo.org/record/7497853/files/${strain_file} + curl -LO --show-error --silent https://zenodo.org/record/7497853/files/${strain_file} psd_file=${channel}_psd.txt test -f ${psd_file} && continue - curl -O --show-error --silent https://zenodo.org/record/7497853/files/${psd_file} + curl -LO --show-error --silent https://zenodo.org/record/7497853/files/${psd_file} done params_file=MBHB_params_v2_LISA_frame.pkl test -f ${params_file} && continue -curl -O --show-error --silent https://zenodo.org/record/7497853/files/${params_file} +curl -LO --show-error --silent https://zenodo.org/record/7497853/files/${params_file}