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

(cherry picked from commit 8a63caca07)
This commit is contained in:
Andy Davidoff
2019-12-31 16:29:19 -05:00
committed by narimiran
parent 7afe6b1f4b
commit 46be787fb2

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