Skip to content

Commit

Permalink
Fix wrong sync exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianKramm committed Jun 11, 2019
1 parent 30d7784 commit 6d021ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/devspace/sync/sync.go
Expand Up @@ -81,7 +81,7 @@ func NewSync(localPath string, options *Options) (*Sync, error) {
}

// We exclude the sync log to prevent an endless loop in upstream
options.ExcludePaths = append(options.ExcludePaths, "/.devspace/")
options.ExcludePaths = append(options.ExcludePaths, ".devspace/")

// Initialize log, this is not thread safe !!!
if options.Log == nil && syncLog == nil {
Expand Down

0 comments on commit 6d021ad

Please sign in to comment.