使用execa的vscode扩展返回EPERM

时间:2019-10-10 01:51:49

标签: node.js visual-studio-code

当前正在编写vscode扩展并在mac osx上进行测试。需要使用execa自动化一些npm命令。在最近一轮的vscode更新之后,我们不再能够运行我们现有的命令。

 async runScript(script: string, cwd?: string) {
  const scriptStdOut = execa.command(script, {
    shell: true,
    cwd: cwd,
    windowsVerbatimArguments: true,
  })
  let out = await scriptStdOut
  return out
}

错误:失败,退出代码为1(EPERM):npx ng更新@ angular / cli @ angular / core

0 个答案:

没有答案