Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Side by Side Diff: sdk/lib/_internal/pub/lib/src/command/global_deactivate.dart

Issue 583853002: Use precompiled dependencies in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698