From 46a9612291dba0e5792ac08ed8f07ca76366f075 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Tue, 17 Aug 2021 08:34:28 -0700 Subject: [PATCH] fix: await showHelp (#269) --- src/commands/help.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/help.ts b/src/commands/help.ts index 83272ed6..0c72af11 100644 --- a/src/commands/help.ts +++ b/src/commands/help.ts @@ -16,6 +16,6 @@ export default class HelpCommand extends Command { async run() { const {flags, argv} = await this.parse(HelpCommand) const help = new Help(this.config, {all: flags.all}) - help.showHelp(argv) + await help.showHelp(argv) } }