| Index: recipes/recipes/depot_tools_builder.expected/basic.json
|
| diff --git a/recipes/recipes/depot_tools_builder.expected/basic.json b/recipes/recipes/depot_tools_builder.expected/basic.json
|
| index 8898dbb567055f751b1fb6fe73590ad1ddff1b28..fe0e17b5b0b2a0a6ac152bc4f57602e4058f1086 100644
|
| --- a/recipes/recipes/depot_tools_builder.expected/basic.json
|
| +++ b/recipes/recipes/depot_tools_builder.expected/basic.json
|
| @@ -233,7 +233,7 @@
|
| "cmd": [
|
| "python",
|
| "-u",
|
| - "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
|
| + "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shutil, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit(0)\nshutil.copy(sys.argv[1], sys.argv[2])\n",
|
| "[SLAVE_BUILD]/depot_tools/bootstrap/win/git_version.txt",
|
| "/path/to/tmp/"
|
| ],
|
| @@ -246,7 +246,7 @@
|
| "cmd": [
|
| "python",
|
| "-u",
|
| - "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
|
| + "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shutil, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit(0)\nshutil.copy(sys.argv[1], sys.argv[2])\n",
|
| "[SLAVE_BUILD]/depot_tools/bootstrap/win/git_version_bleeding_edge.txt",
|
| "/path/to/tmp/"
|
| ],
|
|
|