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

Unified Diff: chrome/tools/build/win/create_installer_archive.py

Issue 254001: Don't assume that we build from the src/chrome folder.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/win/create_installer_archive.py
===================================================================
--- chrome/tools/build/win/create_installer_archive.py (revision 27352)
+++ chrome/tools/build/win/create_installer_archive.py (working copy)
@@ -55,7 +55,7 @@
minor = 0
build = 0
patch = 0
- for line in open(os.path.join(output_dir, "..", VERSION_FILE), 'r'):
+ for line in open(os.path.join(output_dir, "..", "..", "chrome", VERSION_FILE), 'r'):
M-A Ruel 2009/09/27 23:26:29 80 cols
line = line.rstrip()
if line.startswith('MAJOR='):
major = line[6:]
« 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