s3: use --exact-timestamps by default

Closes https://github.com/tuna/issues/issues/1593
Ref to https://github.com/aws/aws-cli/issues/3415
This commit is contained in:
ZenithalHourlyRate 2022-10-01 23:59:35 +08:00
parent f25bb97936
commit 5e2ab0566a
No known key found for this signature in database
GPG Key ID: 1189C659F3D04C1C

2
s3.sh
View File

@ -8,5 +8,5 @@ fi
[[ ! -d "${TUNASYNC_WORKING_DIR}" ]] && mkdir -p "${TUNASYNC_WORKING_DIR}"
mkdir /tmp/none; cd /tmp/none # enter an empty folder, so the stars in TUNASYNC_AWS_OPTIONS are not expanded
exec aws --no-sign-request ${ENDPOINT} s3 sync ${TUNASYNC_AWS_OPTIONS} "${TUNASYNC_UPSTREAM_URL}" "${TUNASYNC_WORKING_DIR}"
exec aws --no-sign-request ${ENDPOINT} s3 sync --exact-timestamps ${TUNASYNC_AWS_OPTIONS} "${TUNASYNC_UPSTREAM_URL}" "${TUNASYNC_WORKING_DIR}"