aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorSam Scholten2026-05-18 10:19:19 +1000
committerSam Scholten2026-05-18 10:19:19 +1000
commitbb5981e82529ce0898505cc0bd114dc2bd1b4766 (patch)
tree7165ad78cea8d972e535c0799914be13ae3f1183 /justfile
parent0170a4358de8828a35ed73716d23be7b6c2f4acc (diff)
downloadusync-main.tar.gz
usync-main.zip
remove unnecessary mount-cloud from sync-cloud recipesHEADmain
Diffstat (limited to 'justfile')
-rw-r--r--justfile12
1 files changed, 4 insertions, 8 deletions
diff --git a/justfile b/justfile
index e1b5e0e..4ba0efe 100644
--- a/justfile
+++ b/justfile
@@ -18,24 +18,20 @@ sync-paths:
unison -ui text paths
# Slow sync to cloud storage (from source)
-sync-cloud: check-rclone mount-cloud
+sync-cloud: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' {{SOURCE}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Slow sync to cloud storage (from target)
-sync-cloud-from-target: check-rclone mount-cloud
+sync-cloud-from-target: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' {{TARGET}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Dry run to cloud (safety check)
-sync-cloud-dry: check-rclone mount-cloud
+sync-cloud-dry: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' --dry-run {{SOURCE}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Dry run to cloud from target (safety check)
-sync-cloud-from-target-dry: check-rclone mount-cloud
+sync-cloud-from-target-dry: check-rclone
rclone sync -P --checkers 32 --transfers 32 --buffer-size 128M --retries 3 --order-by 'size,ascending' --dry-run {{TARGET}}/usync {{CLOUD_REMOTE}}:{{CLOUD_PATH}}
- just unmount-cloud
# Mount management (uses configurable mount point)
mount-cloud: