diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-04-07 17:15:17 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-04-07 17:42:26 +0200 |
commit | ab7d432e72a6c97b7ad9dcfe45b530cd626e4b58 (patch) | |
tree | fc57cbe697dc7e3a866217900c46173966739a7b /bin/bootstrap.py | |
parent | 0ba9831fb60a011102916cc135606d9f3e6178d5 (diff) | |
download | justbuild-ab7d432e72a6c97b7ad9dcfe45b530cd626e4b58.tar.gz |
bootstrap.py: ignore tree operations
Diffstat (limited to 'bin/bootstrap.py')
-rwxr-xr-x | bin/bootstrap.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/bootstrap.py b/bin/bootstrap.py index f0cc30e0..6f7233a9 100755 --- a/bin/bootstrap.py +++ b/bin/bootstrap.py @@ -423,6 +423,8 @@ def bootstrap() -> None: dirs.remove('computed_roots') if 'tree_structure' in dirs: dirs.remove('tree_structure') + if 'tree_operations' in dirs: + dirs.remove('tree_operations') for f in files: if f.endswith(".cpp"): cpp_files.append(os.path.join(root, f)) |