Conversation
|
|
|
Might have something to do with the trailing slash. I think we'll always want a trailing slash on the src (not just the local src), and leave it off of the dest. |
|
So... the problem was I missed the |
| var ( | ||
| skipSyncFlag = flag.Bool("skipsync", false, "skip syncing local settings and extensions to remote host") | ||
| sshFlags = flag.String("ssh-flags", "", "custom SSH flags") | ||
| syncBack = flag.Bool("b", false, "sync extensions back on termination") |
There was a problem hiding this comment.
I think we should make this flag more descriptive, like -syncback and ssh-flags should also become sshflags for consistency.
There was a problem hiding this comment.
I choose the shorter flag because I felt like this would be a common option. I can add short versions of both though.
There was a problem hiding this comment.
Thats fair, lets leave it at -b, I think less ways to do the same thing is better.
Resolves #20