davidolrik/sublime-rsync-ssh

[rsync-ssh] my-project: No remotes defined for my-project

Closed this issue · 2 comments

I have no doubt that this is a me issue rather than a plugin issue, but I think I have everything configured properly and yet I see that message in my console when I save something or try to do a complete upload. My project settings file (my-project.sublime-project) contains the following:

{
    "folders":
    [
        {
            "path": "/Users/robwilkerson/Developer/www/my-project"
        }
    ],
    "settings":
    {
        "rsync_ssh":
        {
            "excludes":
            [
                ".git*",
                "_build",
                "blib",
                "Build"
            ],
            "options":
            [
                "--dry-run",
        "--links",
                "--delete"
            ],
            "remotes":
            {
                "/Users/robwilkerson/Developer/www/my-project":
                [
                    {
                        "enabled": 1,
                        "excludes":
                        [
                        ],
                        "options":
                        [
                        ],
                        "remote_host": "my.devserver.net",
                        "remote_path": "/home/robwilkerson/my-project",
                        "remote_port": 22,
                        "remote_post_command": "",
                        "remote_pre_command": "",
                        "remote_user": "robwilkerson"
                    }
                ]
            }
        }
    }
}

What am I missing here?

Thanks.

1.1.4 is now live via Package Control - and it should fix your problem 😄

Fantastic, thanks.