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

Unified Diff: bootstrap/win/win_tools.bat

Issue 2249163005: Make git version numbers external to batch script. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « bootstrap/win/git_version_bleeding_edge.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bootstrap/win/win_tools.bat
diff --git a/bootstrap/win/win_tools.bat b/bootstrap/win/win_tools.bat
index 4daadce7ff06a7a36c858e114fc70fdfba9467e8..4449ad2c558217703936f36ca7aa3632aa14d9a8 100644
--- a/bootstrap/win/win_tools.bat
+++ b/bootstrap/win/win_tools.bat
@@ -68,9 +68,9 @@ set FIND_EXE=%SYSTEMROOT%\System32\find.exe
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | %FIND_EXE% /i "x86" > NUL && (set OS_BITS=32) || (set OS_BITS=64)
if not exist "%WIN_TOOLS_ROOT_DIR%\.git_bleeding_edge" (
- set GIT_VERSION=2.8.3
+ set /p GIT_VERSION= <"%~dp0git_version.txt"
) else (
- set GIT_VERSION=2.8.3
+ set /p GIT_VERSION= <"%~dp0git_version_bleeding_edge.txt"
)
set GIT_VERSION=%GIT_VERSION%-%OS_BITS%
« no previous file with comments | « bootstrap/win/git_version_bleeding_edge.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698