Skip to content

Commit

Permalink
Fix package name displayed when package is found in different group
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaDrivenDev committed Nov 20, 2016
1 parent 82c9472 commit 2dcbad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Paket.Core/LockFile.fs
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ type LockFile(fileName:string,groups: Map<GroupName,LockFileGroup>) =

member this.CheckIfPackageExistsInAnyGroup (packageName:PackageName) =
match groups |> Seq.tryFind (fun g -> g.Value.Resolution.ContainsKey packageName) with
| Some group -> sprintf "%sHowever, %O was found in group %O." Environment.NewLine PackageName group.Value.Name
| Some group -> sprintf "%sHowever, %O was found in group %O." Environment.NewLine packageName group.Value.Name
| None -> ""


Expand Down

0 comments on commit 2dcbad7

Please sign in to comment.