aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Commands
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2018-03-07 00:54:59 -0300
committerariel- <ariel-@users.noreply.github.com>2018-03-07 00:56:22 -0300
commit68dde9f8c5467c5983078b190e58105f99dad75c (patch)
tree4cd2baa2f53fa9188f27ee035d65baf3be1a2224 /src/server/scripts/Commands
parentad9a9c51a1014b7451eeb3a982c83f3af8575f23 (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.cpp2
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))
{