OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library pub.command.global_deactivate; | 5 library pub.command.global_deactivate; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import '../command.dart'; | 9 import '../command.dart'; |
10 import '../log.dart' as log; | 10 import '../log.dart' as log; |
(...skipping 11 matching lines...) Expand all Loading... |
22 usageError("No package to deactivate given."); | 22 usageError("No package to deactivate given."); |
23 } | 23 } |
24 | 24 |
25 // Don't allow extra arguments. | 25 // Don't allow extra arguments. |
26 if (commandOptions.rest.length > 1) { | 26 if (commandOptions.rest.length > 1) { |
27 var unexpected = commandOptions.rest.skip(1).map((arg) => '"$arg"'); | 27 var unexpected = commandOptions.rest.skip(1).map((arg) => '"$arg"'); |
28 var arguments = pluralize("argument", unexpected.length); | 28 var arguments = pluralize("argument", unexpected.length); |
29 usageError("Unexpected $arguments ${toSentence(unexpected)}."); | 29 usageError("Unexpected $arguments ${toSentence(unexpected)}."); |
30 } | 30 } |
31 | 31 |
32 if (!globals.deactivate(commandOptions.rest.first, logDeactivate: true)) { | 32 if (!globals.deactivate(commandOptions.rest.first)) { |
33 dataError("No active package ${log.bold(commandOptions.rest.first)}."); | 33 dataError("No active package ${log.bold(commandOptions.rest.first)}."); |
34 } | 34 } |
35 | 35 |
36 return null; | 36 return null; |
37 } | 37 } |
38 } | 38 } |
OLD | NEW |