From 7be4404a871a3cc44a0e0a2a2204ed3568bb8bb8 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Tue, 11 Feb 2014 17:33:39 +0400 Subject: [PATCH] Fix call to Merge with new parameter. --- cmd_snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd_snapshot.go b/cmd_snapshot.go index b446944d..cd1d49c3 100644 --- a/cmd_snapshot.go +++ b/cmd_snapshot.go @@ -478,7 +478,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()) + result = result.Merge(sources[i].RefList(), true) } sourceDescription := make([]string, len(sources))