Chromium Code Reviews| Index: gclient_scm.py | 
| diff --git a/gclient_scm.py b/gclient_scm.py | 
| index 93f69974b83db0e4a10c0e9340c5ca2e4679734d..9aa0f0609ec8997286cabdc4fc1a3ce18327ca4f 100644 | 
| --- a/gclient_scm.py | 
| +++ b/gclient_scm.py | 
| @@ -485,7 +485,7 @@ class SVNWrapper(SCMWrapper, scm.SVN): | 
| try: | 
| if not os.path.exists(file_path): | 
| pass | 
| - elif os.path.isfile(file_path): | 
| + elif os.path.isfile(file_path) or os.path.islink(file_path): | 
| logging.info('os.remove(%s)' % file_path) | 
| os.remove(file_path) | 
| elif os.path.isdir(file_path): |