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

Unified Diff: lib/src/command_runner.dart

Issue 1217013004: Make --no-package-symlinks visible. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/command_runner.dart
diff --git a/lib/src/command_runner.dart b/lib/src/command_runner.dart
index ce0645d932b96a6ffcba6217b30ac8262baa599b..19d8cf4d18974898c89886ff9f971687d0e44e8f 100644
--- a/lib/src/command_runner.dart
+++ b/lib/src/command_runner.dart
@@ -56,8 +56,9 @@ class PubCommandRunner extends CommandRunner {
help: 'Shortcut for "--verbosity=all".');
argParser.addFlag('with-prejudice', hide: !isAprilFools,
negatable: false, help: 'Execute commands with prejudice.');
- argParser.addFlag('package-symlinks', hide: true, negatable: true,
- defaultsTo: true);
+ argParser.addFlag('package-symlinks',
+ negatable: true, defaultsTo: true,
+ help: "Generate packages/ directories when installing packages.");
addCommand(new BuildCommand());
addCommand(new CacheCommand());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698