每次我运行devops管道时,都会不断收到dir: cannot access "..."
错误消息。我不知道为什么会这样。
这是我的管道代码:
---
resources:
repositories:
- repository: testrepo
type: github
endpoint: testendp
name: testrepo/data
trigger:
- none
pool:
name: Hosted Ubuntu 1604
steps:
- checkout: testrepo
- script: dir $(Build.SourcesDirectory)
data=$(jq 'to_entries | map(select(.value.isdata=="true")) | from_entries' datafiles.json )
echo "$data"
但是我总是遇到dir: cannot access "..."
错误。
答案 0 :(得分:0)