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

Unified Diff: third_party/git_bin_packager/files/git.cmd

Issue 11312153: Fix PATH to find cmd\git.exe before bin\git.exe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/git_bin_packager/files/git.cmd
===================================================================
--- third_party/git_bin_packager/files/git.cmd (revision 166773)
+++ third_party/git_bin_packager/files/git.cmd (working copy)
@@ -4,7 +4,7 @@
@rem Get the abolute path to the parent directory, which is assumed to be the
@rem Git installation root.
@for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI
-@set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH%
cmp 2012/11/08 22:35:58 Your description didn't mention what happened to m
+@set PATH=%git_install_root%\cmd;%git_install_root%\bin;%PATH%
:: Set the HOME variable to depot_tools (the parent of this directory's parent).
@if not exist "%HOME%" @for /F "delims=" %%I in ("%~dp0..\..") do @set HOME=%%~fI
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698