Chromium Code Reviews| Index: build/toolchain/mac/copy_bundle_data.py |
| diff --git a/build/toolchain/mac/copy_bundle_data.py b/build/toolchain/mac/copy_bundle_data.py |
| index 5392572ee454d3614ed1c6f395139754b14643f3..976591c08ee309a1df86d71d3bd6ce66d3865edc 100644 |
| --- a/build/toolchain/mac/copy_bundle_data.py |
| +++ b/build/toolchain/mac/copy_bundle_data.py |
| @@ -71,7 +71,7 @@ def copy_file(source, dest): |
| # TODO(thakis): This copies file attributes like mtime, while the |
| # single-file branch below doesn't. This should probably be changed to |
| # be consistent with the single-file branch. |
|
Nico
2016/06/09 14:20:53
it looks like this was copy-pasted from somewhere.
Robert Sesek
2016/06/09 14:22:35
It was a boog from before. We never included symli
|
| - shutil.copytree(source, dest) |
| + shutil.copytree(source, dest, symlinks=True) |
| return |
| if os.path.exists(dest): |