Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1539)

Unified Diff: recipes/recipes/infra_continuous.expected/infra-64.json

Issue 2396313002: Roll recipe dependencies (nontrivial). (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: recipes/recipes/infra_continuous.expected/infra-64.json
diff --git a/recipes/recipes/infra_continuous.expected/infra-64.json b/recipes/recipes/infra_continuous.expected/infra-64.json
index a33af083e1e093f5524fa65c67a59e0ba81f3f09..30b59763e7048ae91674be364c4127b1289958a6 100644
--- a/recipes/recipes/infra_continuous.expected/infra-64.json
+++ b/recipes/recipes/infra_continuous.expected/infra-64.json
@@ -221,7 +221,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/"
],
@@ -234,7 +234,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/"
],

Powered by Google App Engine
This is Rietveld 408576698