snapshot: first pass at newest-wins functionality.

This commit is contained in:
Ryan Uber
2014-04-21 18:45:06 -07:00
parent fb8686a634
commit 992a5cee37
3 changed files with 26 additions and 7 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ func aptlySnapshotMerge(cmd *commander.Command, args []string) error {
result := sources[0].RefList()
for i := 1; i < len(sources); i++ {
result = result.Merge(sources[i].RefList(), true)
result = result.Merge(sources[i].RefList(), true, true)
}
sourceDescription := make([]string, len(sources))