From a81b5f078cdfdb1365a78b1f924c271bbb21267d Mon Sep 17 00:00:00 2001 From: Thibault Le Ouay Date: Thu, 28 Nov 2024 11:24:39 +0400 Subject: [PATCH] chore: lint --- src/commands/engine/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/engine/index.ts b/src/commands/engine/index.ts index 24d761d..8766c3c 100644 --- a/src/commands/engine/index.ts +++ b/src/commands/engine/index.ts @@ -8,9 +8,9 @@ import { version } from './version.ts' export const engine = new Command() .description('engine') - .action((function () { + .action(function () { this.showHelp() - })) + }) .command('install', install) .command('update', update) .command('setup', setup)