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 => {
173173 }
174174}
175175
176- async function runLint ( lintPath : string , patchPath : string ) : Promise < void > {
176+ async function runLint ( binPath : string , patchPath : string ) : Promise < void > {
177177 const debug = core . getInput ( `debug` )
178178 if ( debug . split ( `,` ) . includes ( `cache` ) ) {
179- const res = await execShellCommand ( `${ lintPath } cache status` )
179+ const res = await execShellCommand ( `${ binPath } cache status` )
180180 printOutput ( res )
181181 }
182182
@@ -266,7 +266,7 @@ async function runLint(lintPath: string, patchPath: string): Promise<void> {
266266 cmdArgs . cwd = path . resolve ( workingDirectory )
267267 }
268268
269- const cmd = `${ lintPath } run ${ addedArgs . join ( ` ` ) } ${ userArgs } ` . trimEnd ( )
269+ const cmd = `${ binPath } run ${ addedArgs . join ( ` ` ) } ${ userArgs } ` . trimEnd ( )
270270
271271 core . info ( `Running [${ cmd } ] in [${ cmdArgs . cwd || process . cwd ( ) } ] ...` )
272272
You can’t perform that action at this time.
0 commit comments