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) }