OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """ | 6 """ |
7 Tool to perform checkouts in one easy command line! | 7 Tool to perform checkouts in one easy command line! |
8 | 8 |
9 Usage: | 9 Usage: |
10 fetch <recipe> [--property=value [--property2=value2 ...]] | 10 fetch <recipe> [--property=value [--property2=value2 ...]] |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 return checkout.init() | 324 return checkout.init() |
325 | 325 |
326 | 326 |
327 def main(): | 327 def main(): |
328 options, recipe, props = handle_args(sys.argv) | 328 options, recipe, props = handle_args(sys.argv) |
329 spec, root = run_recipe_fetch(recipe, props) | 329 spec, root = run_recipe_fetch(recipe, props) |
330 return run(options, spec, root) | 330 return run(options, spec, root) |
331 | 331 |
332 | 332 |
333 if __name__ == '__main__': | 333 if __name__ == '__main__': |
334 sys.exit(main()) | 334 try: |
| 335 sys.exit(main()) |
| 336 except KeyboardInterrupt: |
| 337 sys.stderr.write('interrupted\n') |
| 338 sys.exit(1) |
OLD | NEW |