Skip to content

Commit db229bc

Browse files
committed
Fix error message for version conflicts
1 parent 860a08a commit db229bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

taminomara-amm-ammcore/pkg/resolver.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ local function describeBestAttempt(rootRequirements, bestAttempt)
188188
if
189189
candidate
190190
and requirements[candidate.name]
191-
and not requirements[candidate.name]:matches(ver.version)
191+
and not requirements[candidate.name]:matches(candidate.version)
192192
then
193193
res = res .. sep .. string.format("%s %s", candidate.name, requirements[candidate.name])
194-
sep = ","
194+
sep = ", "
195195
end
196196
end
197197
res = res .. "\n"

0 commit comments

Comments
 (0)