 Chromium Code Reviews
 Chromium Code Reviews Issue 211057:
  GClient should allow having 'url': None in .gclient...  (Closed) 
  Base URL: svn://chrome-svn/chrome/trunk/tools/depot_tools/
    
  
    Issue 211057:
  GClient should allow having 'url': None in .gclient...  (Closed) 
  Base URL: svn://chrome-svn/chrome/trunk/tools/depot_tools/| Index: gclient.py | 
| =================================================================== | 
| --- gclient.py (revision 26873) | 
| +++ gclient.py (working copy) | 
| @@ -670,7 +670,7 @@ | 
| raise Error("solution %s specified more than once" % name) | 
| url = solution["url"] | 
| entries[name] = url | 
| - if run_scm: | 
| + if run_scm and url: | 
| self._options.revision = revision_overrides.get(name) | 
| scm = gclient_scm.CreateSCM(url, self._root_dir, name) | 
| scm.RunCommand(command, self._options, args, file_list) |