mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
20 lines
329 B
Bash
20 lines
329 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR_NAME="${PWD##*/}"
|
|
|
|
rm -f rclone.log
|
|
|
|
rclone sync \
|
|
--config=/data/ofm/config/rclone.conf \
|
|
--transfers=8 \
|
|
--multi-thread-streams=8 \
|
|
--fast-list \
|
|
-v \
|
|
--stats-file-name-length 0 \
|
|
--stats-one-line \
|
|
--log-file rclone.log \
|
|
--exclude rclone.log \
|
|
. "cf:ofm-planet/$DIR_NAME"
|
|
|