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

Unified Diff: gcl.py

Issue 3201005: Add an error message for MacOSX 10.5.2 users (Closed)
Patch Set: Created 10 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: gcl.py
diff --git a/gcl.py b/gcl.py
index 24d410907b4972380e749ddb21b35400e4cbe5bc..8c89a7a049948c7f458bea55a200d89357ba4c48 100755
--- a/gcl.py
+++ b/gcl.py
@@ -153,6 +153,10 @@ def GetCachedFile(filename, max_age=60*60*24*3, use_root=False):
'svn: Can\'t get username or password'):
ErrorExit('Your svn credentials expired. Please run svn update '
'to fix the cached credentials')
+ if content_array[0].startswith('svn: Can\'t get password'):
+ ErrorExit('If are using a Mac and svn --version shows 1.4.x, '
+ 'please hack gcl.py to remove --non-interactive usage, it\'s'
+ 'a bug on your installed copy')
if not content_array[0].startswith('svn: File not found:'):
# Try again.
continue
« 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