From 718ae370c9a33f6ec96f5edd90c8bc548655c82a Mon Sep 17 00:00:00 2001 From: Peter Farber Date: Thu, 8 Aug 2024 11:30:58 -0400 Subject: [PATCH] refactor(dev-cli): rename build function to exec for clarity and added correct description --- dev-cli/src/commands/exec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-cli/src/commands/exec.js b/dev-cli/src/commands/exec.js index a77e1646a..ba01f4c30 100644 --- a/dev-cli/src/commands/exec.js +++ b/dev-cli/src/commands/exec.js @@ -3,7 +3,7 @@ import { Command } from '../deps.js' import { VERSION } from '../versions.js' -export async function build (_, command) { +export async function exec (_, command) { const pwd = Deno.cwd() const p = Deno.run({ cmd: [ @@ -21,6 +21,6 @@ export async function build (_, command) { } export const command = new Command() - .description('Build the Lua Project into WASM') + .description('Exec command in the container ( ie: exec emcmake cmake . )') .arguments('') - .action(build) + .action(exec)