diff options
Diffstat (limited to 'src/other_tools/just_mr/utils.hpp')
-rw-r--r-- | src/other_tools/just_mr/utils.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/other_tools/just_mr/utils.hpp b/src/other_tools/just_mr/utils.hpp index 9b31d888..753e4b36 100644 --- a/src/other_tools/just_mr/utils.hpp +++ b/src/other_tools/just_mr/utils.hpp @@ -155,7 +155,8 @@ enum class CheckoutType : std::uint8_t { ForeignFile, File, Distdir, - GitTree + GitTree, + Computed }; /// \brief Checkout type map @@ -166,7 +167,8 @@ std::unordered_map<std::string, CheckoutType> const kCheckoutTypeMap = { {"foreign file", CheckoutType::ForeignFile}, {"file", CheckoutType::File}, {"distdir", CheckoutType::Distdir}, - {"git tree", CheckoutType::GitTree}}; + {"git tree", CheckoutType::GitTree}, + {"computed", CheckoutType::Computed}}; namespace JustMR::Utils { /// \brief Recursive part of the ResolveRepo function. |