fixes disruptek/nimph#102 multi-level nim.cfg use (#13001) [backport]

This commit is contained in:
Andy Davidoff
2019-12-31 16:29:19 -05:00
committed by Andreas Rumpf
parent 584e8c8283
commit 8a63caca07

View File

@@ -69,9 +69,10 @@ proc getPathVersion*(p: string): tuple[name, version: string] =
result.version = ""
const specialSeparator = "-#"
var sepIdx = p.find(specialSeparator)
let last = p.rfind(p.lastPathPart) # the index where the last path part begins
var sepIdx = p.find(specialSeparator, start = last)
if sepIdx == -1:
sepIdx = p.rfind('-')
sepIdx = p.rfind('-', start = last)
if sepIdx == -1:
result.name = p