From 59145c5afcb78b535cc02db6146c1d024c5f9bf7 Mon Sep 17 00:00:00 2001 From: Ashley Gillman Date: Thu, 17 Jun 2021 22:48:24 +1000 Subject: [PATCH] Use more portable cp in lieu of rsync (#107) Fixes #104 --- scripts/download_data.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/download_data.sh b/scripts/download_data.sh index 6f9964fd..c8e6a948 100755 --- a/scripts/download_data.sh +++ b/scripts/download_data.sh @@ -192,9 +192,9 @@ then mkdir -p "${DATA_PATH}/MR" pushd "${DATA_PATH}/MR" echo "Unpacking ${filename1}" - rsync -ua "${DOWNLOAD_DIR}/${filename1}" . + cp "${DOWNLOAD_DIR}/${filename1}" . echo "Unpacking ${filename2}" - rsync -ua "${DOWNLOAD_DIR}/${filename2}" . + cp "${DOWNLOAD_DIR}/${filename2}" . popd fi