fix: verify command

This commit is contained in:
Fernandez Ludovic 2025-02-13 22:34:32 +01:00
parent c9bc13a1b2
commit 816019cb26
3 changed files with 3 additions and 3 deletions

2
dist/post_run/index.js generated vendored
View file

@ -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`);

2
dist/run/index.js generated vendored
View file

@ -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`);

View file

@ -52,7 +52,7 @@ async function runLint(binPath: string, patchPath: string): Promise<void> {
}
if (core.getBooleanInput(`verify`, { required: true })) {
const res = await execShellCommand(`${binPath} verify`)
const res = await execShellCommand(`${binPath} config verify`)
printOutput(res)
}