无法在Azure Function应用中使用git命令

时间:2019-03-22 06:34:02

标签: typescript azure

我可以看到我的函数app(Linux)具有'git'并可以在控制台的bash上识别命令。 但是,当我尝试通过shllejs或util的exec或simplegit使用git命令时。

  1. shelljs或execs-/ bin / sh:1:git:找不到
  2. simplegit-错误:生成git ENOEN

我必须使用git二进制文件吗?

enter image description here

  const git = simplegit()
  console.log("infunction")
  //const version = await git.clone(`~~~`). doesnt work
  const version = await shell.exec('/usr/bin/git --version')

  //const version = await shell.exec('git --version') doesnt work
  console.log(version)

0 个答案:

没有答案