Add correct lockfile handling

This commit is contained in:
Frederic Branczyk 2018-05-13 06:55:13 -07:00
parent 061fe0fb19
commit 74c4caa0cf
No known key found for this signature in database
GPG key ID: 7741A52782A90069
5 changed files with 162 additions and 49 deletions

View file

@ -28,7 +28,8 @@ type GitSource struct {
}
type Dependency struct {
Name string `json:"name"`
Source Source `json:"source"`
Version string `json:"version"`
Name string `json:"name"`
Source Source `json:"source"`
Version string `json:"version"`
DepSource string `json:"-"`
}