Skip to content

[eslint-bulk] eslint-bulk-suppressions-test fails to build #4691

Closed
@octogonz

Description

@octogonz

Summary

I was able to reproduce this error locally. The output looks like:

-- Running eslint-bulk-suppressions for eslint@8.57.0 in client --
STDOUT:

STDERR:
@rushstack/eslint-bulk: Error finding patch path: Command failed: C:\Program Files\nodejs\node.exe C:/Git/rushstack/common/temp/default/node_modules/.pnpm/eslint@8.57.0/node_modules/eslint/./bin/eslint.js --stdin --config C:\Git\rushstack\build-tests\eslint-bulk-suppressions-test\client/.eslintrc.js
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.


------------------------------------------------------------------

It looks like a regression caused by PR ##4627

Details

The problem is that this code is pasting strings together without proper escaping:

let eslintBinCommand: string;
if (eslintBinPath) {
eslintBinCommand = `${process.argv0} ${eslintBinPath}`;
} else {
eslintBinCommand = 'eslint'; // Try to use a globally-installed eslint if a local package was not found
}
let stdout: Buffer;
try {
stdout = execSync(`${eslintBinCommand} --stdin --config ${eslintrcPath}`, {
env,
input: '',
stdio: 'pipe'
});

On Windows, the eslintBinCommand string has this value: "C:\\Program Files\\nodejs\\node.exe C:/Git/rushstack/common/temp/default/node_modules/.pnpm/eslint@8.57.0/node_modules/eslint/./bin/eslint.js".

@iclanton I'm not sure this is even solvable using execSync(). The best known solution is Executable.spawnSync() (which still acknowledges that certain characters are impossible to escape on Windows). But avoiding that dependency, we should at least use spawnSync() instead of execSync() here.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    Closed

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions