From 816019cb269fa18e542a774e7b4609f02cad7fe4 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Thu, 13 Feb 2025 22:34:32 +0100 Subject: [PATCH] fix: verify command --- dist/post_run/index.js | 2 +- dist/run/index.js | 2 +- src/run.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/post_run/index.js b/dist/post_run/index.js index 7cc8005..297e712 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -94054,7 +94054,7 @@ async function runLint(binPath, patchPath) { printOutput(res); } if (core.getBooleanInput(`verify`, { required: true })) { - const res = await execShellCommand(`${binPath} verify`); + const res = await execShellCommand(`${binPath} config verify`); printOutput(res); } let userArgs = core.getInput(`args`); diff --git a/dist/run/index.js b/dist/run/index.js index a4572c0..c18aa3b 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -94054,7 +94054,7 @@ async function runLint(binPath, patchPath) { printOutput(res); } if (core.getBooleanInput(`verify`, { required: true })) { - const res = await execShellCommand(`${binPath} verify`); + const res = await execShellCommand(`${binPath} config verify`); printOutput(res); } let userArgs = core.getInput(`args`); diff --git a/src/run.ts b/src/run.ts index 1bd2461..8881de8 100644 --- a/src/run.ts +++ b/src/run.ts @@ -52,7 +52,7 @@ async function runLint(binPath: string, patchPath: string): Promise { } if (core.getBooleanInput(`verify`, { required: true })) { - const res = await execShellCommand(`${binPath} verify`) + const res = await execShellCommand(`${binPath} config verify`) printOutput(res) }