Skip to content

Commit

Permalink
Use more portable cp in lieu of rsync (#107)
Browse files Browse the repository at this point in the history
Fixes #104
  • Loading branch information
ashgillman authored Jun 17, 2021
1 parent 687838a commit 59145c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/download_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 59145c5

Please sign in to comment.