fix #1021, always check if files exist
This commit is contained in:
parent
4ec9f2c00f
commit
b8acbae3e8
@ -140,13 +140,8 @@ inline void AssertPathExists(const boost::filesystem::path &path)
|
|||||||
{
|
{
|
||||||
if (!boost::filesystem::is_regular_file(path))
|
if (!boost::filesystem::is_regular_file(path))
|
||||||
{
|
{
|
||||||
SimpleLogger().Write(logDEBUG) << path << " check failed";
|
|
||||||
throw OSRMException(path.string() + " not found.");
|
throw OSRMException(path.string() + " not found.");
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
SimpleLogger().Write(logDEBUG) << path << " exists";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* BOOST_FILE_SYSTEM_FIX_H */
|
#endif /* BOOST_FILE_SYSTEM_FIX_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user