summaryrefslogtreecommitdiff
path: root/src/other_tools/just_mr/utils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/other_tools/just_mr/utils.hpp')
-rw-r--r--src/other_tools/just_mr/utils.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/other_tools/just_mr/utils.hpp b/src/other_tools/just_mr/utils.hpp
index f470ee61..16f86614 100644
--- a/src/other_tools/just_mr/utils.hpp
+++ b/src/other_tools/just_mr/utils.hpp
@@ -25,17 +25,18 @@
#include "gsl/gsl"
#include "nlohmann/json.hpp"
#include "src/buildtool/build_engine/expression/configuration.hpp"
+#include "src/buildtool/file_system/file_system_manager.hpp"
#include "src/buildtool/storage/config.hpp"
/* Paths and constants required by just-mr */
auto const kDefaultJustPath = "just";
auto const kDefaultGitPath = "git";
-auto const kDefaultRCPath = StorageConfig::GetUserHome() / ".just-mrrc";
+auto const kDefaultRCPath = FileSystemManager::GetUserHome() / ".just-mrrc";
auto const kDefaultBuildRoot = StorageConfig::kDefaultBuildRoot;
auto const kDefaultCheckoutLocationsFile =
- StorageConfig::GetUserHome() / ".just-local.json";
-auto const kDefaultDistdirs = StorageConfig::GetUserHome() / ".distfiles";
+ FileSystemManager::GetUserHome() / ".just-local.json";
+auto const kDefaultDistdirs = FileSystemManager::GetUserHome() / ".distfiles";
std::vector<std::string> const kTakeOver = {"bindings",
"target_file_name",