diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2025-01-17 10:20:14 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2025-01-21 09:58:36 +0100 |
commit | 8196d143f343a11026293521e5dbe0a9731d5050 (patch) | |
tree | cd349c8c159c53107687e6218ab1dcadd9311c64 /bin/bootstrap.py | |
parent | 7f9ec0066f75c7735bab4978d78de7701964ff56 (diff) | |
download | justbuild-8196d143f343a11026293521e5dbe0a9731d5050.tar.gz |
Exclude 'tree_structure' directory from bootstrapping
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 91700b7d..f0cc30e0 100755 --- a/bin/bootstrap.py +++ b/bin/bootstrap.py @@ -421,6 +421,8 @@ def bootstrap() -> None: dirs.remove('archive') if 'computed_roots' in dirs: dirs.remove('computed_roots') + if 'tree_structure' in dirs: + dirs.remove('tree_structure') for f in files: if f.endswith(".cpp"): cpp_files.append(os.path.join(root, f)) |