You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
displayWarning(&"Error reading tag {tag}: for package {name}. This may not be relevant as it could be an old version of the package. \n{e.msg}", HighPriority)
547
+
displayWarning(&"Error getting package info for {name}: {e.msg}", HighPriority)
548
+
549
+
# Process tagged versions in the temporary copy
550
+
var checkedTags =0
551
+
for (ver, tag) in tags.pairs:
552
+
if options.maxTaggedVersions >0and checkedTags >= options.maxTaggedVersions:
553
+
break
554
+
inc checkedTags
555
+
556
+
try:
557
+
doCheckout(downloadMethod, tempDir, tag)
558
+
let nimbleFile =findNimbleFile(tempDir, true, options)
559
+
let pkgInfo =getPkgInfoFromFile(nimbleFile, options, useCache=false)
560
+
result.addUnique pkgInfo.getMinimalInfo(options)
561
+
exceptCatchableErroras e:
562
+
displayWarning(
563
+
&"Error reading tag {tag}: for package {name}. This may not be relevant as it could be an old version of the package. \n{e.msg}",
0 commit comments