Skip to content
This repository was archived by the owner on Jan 17, 2021. It is now read-only.

Also delete extensions and settings to simulate a two-way mount #44

Merged
merged 1 commit into from
Apr 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,9 @@ func rsync(src string, dest string, sshFlags string, excludePaths ...string) err
// Only update newer directories, and sync times
// to keep things simple.
"-u", "--times",
// This is more unsafe, but it's obnoxious having to enter VS Code
// locally in order to properly delete an extension.
"--delete",
"--copy-unsafe-links",
src, dest,
)...,
Expand Down