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

Unified Diff: git_common.py

Issue 2204423002: Fix freeze when running from a non-root directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_common.py
diff --git a/git_common.py b/git_common.py
index c602103308cbfffbb297c4f7a493daf718540c92..720840cc5e2d2e8df3866e5e345d0ca78c2142ac 100644
--- a/git_common.py
+++ b/git_common.py
@@ -405,12 +405,14 @@ def freeze():
limit_mb = get_config_int(key, 100)
untracked_bytes = 0
+ root_path = repo_root()
+
for f, s in status():
if is_unmerged(s):
die("Cannot freeze unmerged changes!")
if limit_mb > 0:
if s.lstat == '?':
- untracked_bytes += os.stat(f).st_size
+ untracked_bytes += os.stat(os.path.join(root_path, f)).st_size
if untracked_bytes > limit_mb * MB:
die("""\
You appear to have too much untracked+unignored data in your git
« 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