5 lines
164 B
Bash
Executable file
5 lines
164 B
Bash
Executable file
#!/bin/sh
|
|
|
|
which rclone &>/dev/null || { echo "❌ rclone not installed"; exit 1; }
|
|
|
|
test -d /mnt/experiences || { echo "❌ /mnt/models does not exist"; exit 1; }
|