如何在 Oclif 的 运行 方法中强制执行 --help 命令

How to force --help command to execute in run method in Oclif

我的要求很简单。我想在用户执行没有足够参数的特定命令时执行帮助命令。

异步运行() { 如果(!args.name){ this.log(please provide a project name.) // 帮助 ()
} }

经过一些文档搜索,我找到了答案:

if (!args.name) {
      this.log(`please provide a project name.`)
      **await Build.run(['--help'])**   
}