blob: ae47a052e9ecc240598266ef6f463f7ac15d96b6 [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library pub.command.global_run;
import 'dart:async';
import 'package:path/path.dart' as p;
import '../command.dart';
import '../io.dart';
import '../utils.dart';
/// Handles the `global run` pub command.
class GlobalRunCommand extends PubCommand {
bool get takesArguments => true;
bool get allowTrailingOptions => false;
String get description =>
"Run an executable from a globally activated package.\n"
"NOTE: We are currently optimizing this command's startup time.";
String get usage => "pub global run <package>:<executable> [args...]";
Future onRun() async {
if (commandOptions.rest.isEmpty) {
usageError("Must specify an executable to run.");
}
var package;
var executable = commandOptions.rest[0];
if (executable.contains(":")) {
var parts = split1(executable, ":");
package = parts[0];
executable = parts[1];
} else {
// If the package name is omitted, use the same name for both.
package = executable;
}
var args = commandOptions.rest.skip(1).toList();
if (p.split(executable).length > 1) {
// TODO(nweiz): Use adjacent strings when the new async/await compiler
// lands.
usageError('Cannot run an executable in a subdirectory of a global ' +
'package.');
}
var exitCode = await globals.runExecutable(package, executable, args);
await flushThenExit(exitCode);
}
}