Skip to content

Commit aefc892

Browse files
webwarrior-wsknocte
authored andcommitted
Core/Lint.fs: fix build
1 parent 5066805 commit aefc892

File tree

1 file changed

+1
-1
lines changed
  • src/FSharpLint.Core/Application

1 file changed

+1
-1
lines changed

src/FSharpLint.Core/Application/Lint.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ module Lint =
660660

661661
let lintSingleFile filePath =
662662
if IO.File.Exists filePath then
663-
match ParseFile.parseFile filePath checker None with
663+
match ParseFile.parseFile filePath checker None |> Async.RunSynchronously with
664664
| ParseFile.Success astFileParseInfo ->
665665
let parsedFileInfo =
666666
{ Source = astFileParseInfo.Text

0 commit comments

Comments
 (0)