Index: build/clobber.py |
diff --git a/build/clobber.py b/build/clobber.py |
index 1229f7bf8d43371bd7bf089c1ef66116043f285b..b6c69982a783d45f3635eebe9ce8ca4197ffef42 100755 |
--- a/build/clobber.py |
+++ b/build/clobber.py |
@@ -37,6 +37,8 @@ def extract_gn_build_commands(build_ninja_file): |
def delete_dir(build_dir): |
+ if os.path.islink(build_dir): |
+ return |
# For unknown reasons (anti-virus?) rmtree of Chromium build directories |
# often fails on Windows. |
if sys.platform.startswith('win'): |