From 03f64a292bbf4187dc63ac07d16ce654b326f659 Mon Sep 17 00:00:00 2001 From: Shichao Wu Date: Fri, 13 Oct 2023 19:14:48 +0200 Subject: [PATCH] Update get.sh (#4532) --- examples/inference/lisa_smbhb_ldc/get.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}