diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2018-03-07 00:54:59 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2018-03-07 00:56:22 -0300 |
| commit | 68dde9f8c5467c5983078b190e58105f99dad75c (patch) | |
| tree | 4cd2baa2f53fa9188f27ee035d65baf3be1a2224 /src/server/scripts/Commands | |
| parent | ad9a9c51a1014b7451eeb3a982c83f3af8575f23 (diff) | |
Scripts/Command: build fix for horrible outdated boost version used by travis
Diffstat (limited to 'src/server/scripts/Commands')
| -rw-r--r-- | src/server/scripts/Commands/cs_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_server.cpp b/src/server/scripts/Commands/cs_server.cpp index 8d3867aaef0..56322b8ebc7 100644 --- a/src/server/scripts/Commands/cs_server.cpp +++ b/src/server/scripts/Commands/cs_server.cpp @@ -200,7 +200,7 @@ public: for (std::string const& subDir : subDirs) { boost::filesystem::path mapPath(dataDir); - mapPath.append(subDir); + mapPath /= subDir; if (!boost::filesystem::exists(mapPath)) { |
