我创建了一个需要运行简单git
和node
命令的自定义 JavaScript GitHub 操作。我使用了GitHub 提供的exec npm 模块。
每次我尝试运行命令时都会失败。例如:
exec.exec('git config user.name "Package Updater"')
失败了
##[error]There was an error when attempting to execute the process '/usr/bin/git'. This may indicate the process failed to start. Error: spawn /usr/bin/git ENOENT
node
ornpm
命令也会发生同样的事情。
如果我使用 node.js 执行操作的 js 文件,上面的命令在本地可以正常工作。