[rsync-ssh] my-project: No remotes defined for my-project
Closed this issue · 2 comments
robwilkerson commented
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.
davidolrik commented
1.1.4 is now live via Package Control - and it should fix your problem 😄
robwilkerson commented
Fantastic, thanks.