Skip to content

Commit

Permalink
dc: fix file watching (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
landism authored Jan 7, 2019
1 parent 52daf17 commit b93e720
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/model/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,11 @@ func (m Manifest) LocalPaths() []string {
result := make([]string, len(di.Mounts))
for i, mount := range di.Mounts {
result[i] = mount.LocalPath

}
return result
default:
return nil
}
return nil
}
}

Expand Down

0 comments on commit b93e720

Please sign in to comment.