[Help] with fixing copy and local-no-check

Hello I'm trying to modified a script to upload symlink files linked to actual files from another directory
the original files is

"remotes": {
    "google": {
        "hidden_remote": "google:",
        "rclone_command": "move",
        "rclone_excludes": [
            "**partial~",
            "**_HIDDEN~",
            ".unionfs/**",
            ".unionfs-fuse/**"
        ],
        "rclone_extras": {
            "--checkers": 16,
            "--drive-chunk-size": "64M",
            "--skip-links": null,
            "--stats": "60s",
            "--copy-links": 10,
            "--local-no-check-updated": 10,
            "--transfers": 8,
            "--user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36",
            "--verbose": 1
            },

I want to know what do I put in

  1. "--copy-links": (here),
  2. "--local-no-check-updated": (Here),
    to make the script works and copy them without the
    ( Excluding these files from being uploaded because they were open: )

I would guess this should be

"--local-no-check-updated": null,
"--copy-links": null,

"--local-no-check-updated": null,
"--copy-links": null,

Thanks, that's sloved the probem.
Now, how can I make it upload more than one source?
Do I just add another dire
if the original dir is

"remove_empty_dir_depth": 2,
"sync_remote": "remote:/path",
"upload_folder": "/root/folder/path",
"upload_remote": "remote:/path/to/upload/to"

do i just add another

"upload_folder": "/root/folder/path",

beneath the first upload folder ?

I don't know.. Which uploading script are you using?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.