run method
Runs this command.
The return value is wrapped in a Future if necessary and returned by
CommandRunner.runCommand.
Implementation
@override
Future<int> run() async {
final inPath = inputPath;
final outPath = argResults?['output-path'] as String? ?? inPath;
await cli.update(inPath, outPath);
return 0;
}