diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2018-03-07 00:54:59 -0300 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-08-23 19:18:49 +0200 |
| commit | 9f0204b3571f9ec83a21f676d4e0682d0fb30c58 (patch) | |
| tree | 2472ae9e775aaade7a92766073e2ea3d086e9ec6 /src/server/scripts/Commands | |
| parent | 9c54e210b161750e4a1bff82079b98aa965ad142 (diff) | |
Scripts/Command: build fix for horrible outdated boost version used by travis
(cherry picked from commit 68dde9f8c5467c5983078b190e58105f99dad75c)
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 5c1e316fa41..c9378dcf04c 100644 --- a/src/server/scripts/Commands/cs_server.cpp +++ b/src/server/scripts/Commands/cs_server.cpp @@ -201,7 +201,7 @@ public: for (std::string const& subDir : subDirs) { boost::filesystem::path mapPath(dataDir); - mapPath.append(subDir); + mapPath /= subDir; if (!boost::filesystem::exists(mapPath)) { |
