mirror of
https://github.com/rclone/rclone.git
synced 2025-01-10 00:08:44 +01:00
6c10024420
Also add a test script for testing all the remotes
26 lines
302 B
Bash
Executable File
26 lines
302 B
Bash
Executable File
#!/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
|