File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -173,10 +173,10 @@ const printOutput = (res: ExecRes): void => {
173
173
}
174
174
}
175
175
176
- async function runLint ( lintPath : string , patchPath : string ) : Promise < void > {
176
+ async function runLint ( binPath : string , patchPath : string ) : Promise < void > {
177
177
const debug = core . getInput ( `debug` )
178
178
if ( debug . split ( `,` ) . includes ( `cache` ) ) {
179
- const res = await execShellCommand ( `${ lintPath } cache status` )
179
+ const res = await execShellCommand ( `${ binPath } cache status` )
180
180
printOutput ( res )
181
181
}
182
182
@@ -266,7 +266,7 @@ async function runLint(lintPath: string, patchPath: string): Promise<void> {
266
266
cmdArgs . cwd = path . resolve ( workingDirectory )
267
267
}
268
268
269
- const cmd = `${ lintPath } run ${ addedArgs . join ( ` ` ) } ${ userArgs } ` . trimEnd ( )
269
+ const cmd = `${ binPath } run ${ addedArgs . join ( ` ` ) } ${ userArgs } ` . trimEnd ( )
270
270
271
271
core . info ( `Running [${ cmd } ] in [${ cmdArgs . cwd || process . cwd ( ) } ] ...` )
272
272
You can’t perform that action at this time.
0 commit comments