1
0
forked from GitHub/gf-core

fix in the versioning of the .gfo files

This commit is contained in:
kr.angelov
2011-11-15 19:46:02 +00:00
parent 1b85355d47
commit 79ba3c0877
2 changed files with 3 additions and 4 deletions

View File

@@ -115,7 +115,7 @@ getAllFiles opts ps env file = do
case mb_mo of
Just mo -> return (st,importsOfModule mo)
Nothing
| isGFO file -> ioeErr $ Bad (file ++ " is compiled with different GF version and I cannot find the source file")
| isGFO file -> ioeErr $ Bad (file ++ " is compiled with different GF version and I can't find the source file")
| otherwise -> do s <- ioeIO $ BS.readFile file
case runP pModHeader s of
Left (Pn l c,msg) -> ioeBad (file ++ ":" ++ show l ++ ":" ++ show c ++ ": " ++ msg)