FormulaRunCommand constructor

FormulaRunCommand()

Creates the formula-run command.

Implementation

FormulaRunCommand() {
  _addApiOptions(argParser);
  _addSelectorOptions(argParser);
  argParser
    ..addOption('action', defaultsTo: 'verify', help: 'Formula action.')
    ..addOption('formula-version', help: 'Target version.')
    ..addFlag(
      'async',
      negatable: false,
      help:
          'Do not wait. Prints an operation id to ask about later — for work '
          'that outlives the Hub\'s request timeout, like an install.',
    );
}