mirror of
https://github.com/rclone/rclone.git
synced 2025-01-25 07:39:13 +01:00
26 lines
302 B
Bash
26 lines
302 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
go install
|
||
|
|
||
|
REMOTES="
|
||
|
memstore:
|
||
|
s3:
|
||
|
drive2:
|
||
|
gcs:
|
||
|
dropbox:
|
||
|
/tmp/z
|
||
|
"
|
||
|
|
||
|
function test_remote {
|
||
|
args=$@
|
||
|
rclonetest $args || {
|
||
|
echo "*** rclonetest $args FAILED ***"
|
||
|
exit 1
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for remote in $REMOTES; do
|
||
|
test_remote $remote
|
||
|
test_remote --subdir $remote
|
||
|
done
|