| Index: recipes/recipes/infra_continuous.expected/infra-cross-compile.json
|
| diff --git a/recipes/recipes/infra_continuous.expected/infra-cross-compile.json b/recipes/recipes/infra_continuous.expected/infra-cross-compile.json
|
| index 961d6dc5677afd37aa7da8b0bacb5625169c28dc..7d68086052bd61ef0fb2f92ce0abf58eb45406d5 100644
|
| --- a/recipes/recipes/infra_continuous.expected/infra-cross-compile.json
|
| +++ b/recipes/recipes/infra_continuous.expected/infra-cross-compile.json
|
| @@ -341,7 +341,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]/infra/go/bin/file 1.sha1",
|
| "/path/to/tmp/"
|
| ],
|
| @@ -354,7 +354,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]/infra/go/bin/file 2.sha1",
|
| "/path/to/tmp/"
|
| ],
|
|
|