2025-08-22 11:30:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2025-12-09 18:11:17 +01:00
|
|
|
which rclone &>/dev/null || { echo "❌ rclone not installed"; exit 1; }
|
2025-08-22 11:30:34 +02:00
|
|
|
|
2025-12-09 18:11:17 +01:00
|
|
|
test -d /mnt/experiences || { echo "❌ /mnt/models does not exist"; exit 1; }
|