diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-05-25 11:19:55 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-05-31 15:21:02 +0200 |
commit | 26e7149fe8cc1be820ab35ebb6b92a683f9809bb (patch) | |
tree | d4cc1bf3cddbd54302e4e8c43af0dfe9fa128d75 /src/buildtool/file_system/file_root.hpp | |
parent | 052c762d16885b198989e2de164d37f8a8d19462 (diff) | |
download | justbuild-26e7149fe8cc1be820ab35ebb6b92a683f9809bb.tar.gz |
just: Add handling of ignore-special roots
Diffstat (limited to 'src/buildtool/file_system/file_root.hpp')
-rw-r--r-- | src/buildtool/file_system/file_root.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buildtool/file_system/file_root.hpp b/src/buildtool/file_system/file_root.hpp index af61c8fd..ed03f55d 100644 --- a/src/buildtool/file_system/file_root.hpp +++ b/src/buildtool/file_system/file_root.hpp @@ -98,6 +98,9 @@ class FileRoot { public: static constexpr auto kGitTreeMarker = "git tree"; + static constexpr auto kGitTreeIgnoreSpecialMarker = + "git tree ignore-special"; + static constexpr auto kFileIgnoreSpecialMarker = "file ignore-special"; class DirectoryEntries { friend class FileRoot; |