Skip to content

Commit 5023b5c

Browse files
committed
f
1 parent 5379965 commit 5023b5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ interface NPMOptions extends SpawnOptions {
3535
export function npm(options?: NPMOptions) {
3636
let npmCmd;
3737
let globalOptions = options?.quiet === true ? ['--quiet'] : [];
38-
// See: https://github.com/nodejs/node/issues/3675 and in particular
39-
// https://github.com/nodejs/node/issues/3675#issuecomment-308963807.
38+
39+
// See: https://github.com/nodejs/node/issues/3675.
4040
if (process.platform === 'win32') {
4141
npmCmd = 'cmd';
4242
globalOptions = ['/c', 'npm.cmd', ...globalOptions];

0 commit comments

Comments
 (0)