fixes criticial finish.nim bug

This commit is contained in:
Araq
2016-11-03 12:28:35 +01:00
parent ee8c1c6f93
commit 33ebf3e5fb

View File

@@ -114,8 +114,10 @@ proc main() =
var mingWchoices: seq[string] = @[]
var incompat: seq[string] = @[]
for x in p.split(';'):
let y = expandFilename(if x[0] == '"' and x[^1] == '"':
substr(x, 1, x.len-2) else: x)
if x.len == 0: continue
let y = try: expandFilename(if x[0] == '"' and x[^1] == '"':
substr(x, 1, x.len-2) else: x)
except: ""
if y == desiredPath: alreadyInPath = true
if y.toLowerAscii.contains("mingw"):
if dirExists(y):