Update sync_host.sh

修复目录容器内不存在导致备份脚本失败的bug
pull/724/head
玖亖伍 2021-08-31 09:59:33 +08:00 committed by GitHub
parent 097af0077e
commit acdd2e2f4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,10 @@ export HOST_DIR=/mindoc-sync-host
export DOCKER_DIR=/mindoc
function doSyncCopy() {
rclone $SYNC_ACTION --progress --exclude .git* --exclude .git/** "${1}" "${2}"
if [ -d "${1}" ]
then
rclone $SYNC_ACTION --progress --exclude .git* --exclude .git/** "${1}" "${2}"
fi
}
function doSync() {
@ -37,4 +40,4 @@ if ! [ -z "${SYNC_LIST}" ]; then
for item in $SYNC_LIST; do
doSync "${item}"
done
fi
fi