Chromium Code Reviews| Index: slave/skia_slave_scripts/update.py |
| diff --git a/slave/skia_slave_scripts/update.py b/slave/skia_slave_scripts/update.py |
| index 93c01e56a608d4f7747e24f4888dda8d24ff8278..d35308f2a1ad916220e5a1c7dc95fc16bb4ffe48 100644 |
| --- a/slave/skia_slave_scripts/update.py |
| +++ b/slave/skia_slave_scripts/update.py |
| @@ -63,7 +63,8 @@ class Update(BuildStep): |
| # Clean our checkout to make sure we don't have a patch left over. |
| gclient_utils.Revert() |
| gclient_utils.Sync( |
| - branches=[solution['name'] for solution in solution_dicts], |
| + branches=[solution['name'] for solution in solution_dicts |
| + if not solution['url'].endswith('.git')], |
|
scroggo
2013/06/24 17:43:16
I assume there is some other method we'll be using
borenet
2013/06/25 18:19:12
Does this actually cause the git repository to be
scroggo
2013/06/25 19:28:56
It does, but I agree with your concern about keepi
|
| revision=self._revision, |
| verbose=True, |
| manually_grab_svn_rev=True, |