OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /// The main entrypoint for the pub command line application. | 5 /// The main entrypoint for the pub command line application. |
6 library pub; | 6 library pub; |
7 | 7 |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 import 'dart:io'; | 9 import 'dart:io'; |
10 import 'dart:math'; | 10 import 'dart:math'; |
11 | 11 |
12 import '../../pkg/args/lib/args.dart'; | 12 import '../../pkg/args/lib/args.dart'; |
13 import '../../pkg/path/lib/path.dart' as path; | 13 import '../../pkg/pathos/lib/path.dart' as path; |
14 | 14 |
15 import 'command_help.dart'; | 15 import 'command_help.dart'; |
16 import 'command_install.dart'; | 16 import 'command_install.dart'; |
17 import 'command_lish.dart'; | 17 import 'command_lish.dart'; |
18 import 'command_update.dart'; | 18 import 'command_update.dart'; |
19 import 'command_uploader.dart'; | 19 import 'command_uploader.dart'; |
20 import 'command_version.dart'; | 20 import 'command_version.dart'; |
21 import 'entrypoint.dart'; | 21 import 'entrypoint.dart'; |
22 import 'exit_codes.dart' as exit_codes; | 22 import 'exit_codes.dart' as exit_codes; |
23 import 'http.dart'; | 23 import 'http.dart'; |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 if (exception is HttpException || exception is HttpParserException || | 318 if (exception is HttpException || exception is HttpParserException || |
319 exception is SocketIOException || exception is PubHttpException) { | 319 exception is SocketIOException || exception is PubHttpException) { |
320 return exit_codes.UNAVAILABLE; | 320 return exit_codes.UNAVAILABLE; |
321 } else if (exception is FormatException) { | 321 } else if (exception is FormatException) { |
322 return exit_codes.DATA; | 322 return exit_codes.DATA; |
323 } else { | 323 } else { |
324 return 1; | 324 return 1; |
325 } | 325 } |
326 } | 326 } |
327 } | 327 } |
OLD | NEW |