Merge pull request #158 from hwsoderlund/fix_compile_error

Fix compilation error visibility
This commit is contained in:
Steve
2018-10-29 10:19:17 -07:00
committed by GitHub

View File

@@ -46,6 +46,9 @@ func ProcessSource(paths *model.RevelContainer) (_ *model.SourceInfo, compileErr
// Start walking the directory tree.
compileError = utils.Walk(root, pc.processPath)
if compileError != nil {
return
}
}
return pc.srcInfo, compileError