This commit is contained in:
devthejo 2024-06-28 20:26:40 +02:00
parent 24469d6105
commit 5e62916e92
Signed by: devthejo
GPG key ID: C04215C627711F5C

View file

@ -41,7 +41,7 @@ ok_or_die "Could not set mc alias"
IFS=' ' read -r -a remote_paths <<< "$remote_path"
for rpath in "${remote_paths[@]}"; do
info "Will upload $local_path to $rpath"
mc cp -r "$local_path" "$rpath"
mc cp -r $local_path s3/$rpath
ok_or_die "Could not upload object"
done