From 81b38091c03f5c504be40c844888e2816cb7fa2d Mon Sep 17 00:00:00 2001 From: Nick Pleatsikas Date: Sun, 7 Jul 2024 13:47:16 -0700 Subject: [PATCH] Updated debug message to include subcommand. --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 8d3be17..2bac6bc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -21,7 +21,7 @@ async function run(): Promise { // Download, extract, and execute binary. const binaryPath = await binary.saveBinary(assetURL); core.debug( - `Executing script: ${binaryPath} ${inputs.args.join(" ")} ${inputs.script}`, + `Executing script: ${binaryPath} run ${inputs.args.join(" ")} ${inputs.script}`, ); const output = await binary.executeScript( binaryPath,