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

Unified Diff: recipes/recipes/depot_tools_builder.expected/identical_normal_bleeding_edge_git_versions.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/depot_tools_builder.expected/identical_normal_bleeding_edge_git_versions.json
diff --git a/recipes/recipes/depot_tools_builder.expected/identical_normal_bleeding_edge_git_versions.json b/recipes/recipes/depot_tools_builder.expected/identical_normal_bleeding_edge_git_versions.json
index 87130b900b92ac72d882f1cf6e16a08a914583c4..be6484be7773073df35cbbc139a0f0edd2531ee6 100644
--- a/recipes/recipes/depot_tools_builder.expected/identical_normal_bleeding_edge_git_versions.json
+++ b/recipes/recipes/depot_tools_builder.expected/identical_normal_bleeding_edge_git_versions.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/"
],
« no previous file with comments | « recipes/recipes/depot_tools_builder.expected/basic.json ('k') | recipes/recipes/infra_continuous.expected/infra-64.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698