[email protected] | 1f894dc | 2014-03-13 02:49:53 | [diff] [blame] | 1 | #!/usr/bin/python |
2 | # Copyright 2014 The Chromium Authors. All rights reserved. | ||||
3 | # Use of this source code is governed by a BSD-style license that can be | ||||
4 | # found in the LICENSE file. | ||||
5 | |||||
6 | """Pull latest revisions of the W3C test repos and update our DEPS entries.""" | ||||
[email protected] | 1f894dc | 2014-03-13 02:49:53 | [diff] [blame] | 7 | |
8 | from webkitpy.common import version_check | ||||
[email protected] | e16a59d | 2014-09-12 00:19:27 | [diff] [blame] | 9 | from webkitpy.common.system.systemhost import SystemHost |
10 | from webkitpy.w3c.deps_updater import DepsUpdater | ||||
[email protected] | 1f894dc | 2014-03-13 02:49:53 | [diff] [blame] | 11 | |
12 | |||||
13 | if __name__ == '__main__': | ||||
[email protected] | e16a59d | 2014-09-12 00:19:27 | [diff] [blame] | 14 | host = SystemHost() |
15 | updater = DepsUpdater(host) | ||||
16 | try: | ||||
17 | host.exit(updater.main()) | ||||
18 | except KeyboardInterrupt: | ||||
19 | host.print_("Interrupted, exiting") | ||||
20 | host.exit(130) |