Commit 3c84298e authored by maruel@chromium.org's avatar maruel@chromium.org

Add an error message for MacOSX 10.5.2 users

TBR=bradnelson

Review URL: http://codereview.chromium.org/3201005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@56880 0039d316-1c4b-4281-b951-d872f2087c98
parent 802933db
...@@ -153,6 +153,10 @@ def GetCachedFile(filename, max_age=60*60*24*3, use_root=False): ...@@ -153,6 +153,10 @@ def GetCachedFile(filename, max_age=60*60*24*3, use_root=False):
'svn: Can\'t get username or password'): 'svn: Can\'t get username or password'):
ErrorExit('Your svn credentials expired. Please run svn update ' ErrorExit('Your svn credentials expired. Please run svn update '
'to fix the cached credentials') '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:'): if not content_array[0].startswith('svn: File not found:'):
# Try again. # Try again.
continue continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment