1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 07:53:51 +00:00

Fix CI builds

Apparently the only tab characters are in this file.
This commit is contained in:
Alexei Dobrohotov 2019-07-04 13:36:27 +03:00 committed by GitHub
parent 648dc7db26
commit e4e513c5dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,12 +88,12 @@ boost::filesystem::path LinuxPath::getLocalPath() const
for(const char *path : statusPaths) for(const char *path : statusPaths)
{ {
if (readlink(path, binPath, sizeof(binPath)) != -1) if (readlink(path, binPath, sizeof(binPath)) != -1)
{ {
localPath = boost::filesystem::path(binPath).parent_path(); localPath = boost::filesystem::path(binPath).parent_path();
break; break;
} }
} }
return localPath; return localPath;
} }