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.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/other_tools/just_mr/utils.hpp b/src/other_tools/just_mr/utils.hpp
index d0d33a1e..58b6931b 100644
--- a/src/other_tools/just_mr/utils.hpp
+++ b/src/other_tools/just_mr/utils.hpp
@@ -156,7 +156,7 @@ enum class CheckoutType : std::uint8_t {
File,
Distdir,
GitTree,
- Computed
+ Precomputed
};
/// \brief Checkout type map
@@ -168,7 +168,8 @@ std::unordered_map<std::string, CheckoutType> const kCheckoutTypeMap = {
{"file", CheckoutType::File},
{"distdir", CheckoutType::Distdir},
{"git tree", CheckoutType::GitTree},
- {"computed", CheckoutType::Computed}};
+ {"computed", CheckoutType::Precomputed},
+ {"tree structure", CheckoutType::Precomputed}};
namespace JustMR::Utils {
/// \brief Recursive part of the ResolveRepo function.