From d4771bf9761c70edf9be623d7adce5678c5fc214 Mon Sep 17 00:00:00 2001 From: Dmitriy Safronov Date: Sat, 19 Feb 2022 01:12:13 +0300 Subject: [PATCH] --no-times --- sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.sh b/sync.sh index 581d5c6..13331d0 100644 --- a/sync.sh +++ b/sync.sh @@ -27,6 +27,6 @@ warning "Starting at $(date -u)" find overlay/ -type f -name .gitkeep -delete -LC_ALL=C.UTF-8 rsync -acxvn --delete-after --exclude '*-opkg' -e "ssh -p ${OPENWRT_SSH_PORT:-22}" overlay/ "${OPENWRT_SSH_HOST:-root@192.168.0.1}:/overlay/upper/" || die "Couldn't rsync config" +LC_ALL=C.UTF-8 rsync -acxvn --no-times --delete-after --exclude '*-opkg' -e "ssh -p ${OPENWRT_SSH_PORT:-22}" overlay/ "${OPENWRT_SSH_HOST:-root@192.168.0.1}:/overlay/upper/" || die "Couldn't rsync config" success "Done at $(date -u)" -- GitLab