Fix error message with cliPath

This commit is contained in:
HaveAGitGat 2024-05-22 13:04:30 +01:00
parent f8ee3169f3
commit d29f7990ec

View file

@ -256,7 +256,7 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
const res = await cli.runCli();
if (res.cliExitCode !== 0) {
const msg = `Running ${userCli} failed`;
const msg = `Running ${cliPath} failed`;
args.jobLog(msg);
throw new Error(msg);
}