fix(bin/linja): replace '\' with '/' for flycheck output on windows

This commit is contained in:
Soonho Kong 2014-09-30 14:22:05 -07:00
parent 5deb6e10db
commit f4e118de76

View file

@ -304,6 +304,8 @@ def process_lean_output(target, out, args):
current_file = ""
while i < lines_len:
line = lines[i]
if platform.system() == "Windows":
line = line.replace("\\", "/")
i += 1
if line == "":
continue