首页 > 解决方案 > 在管道中使用 AzureCLI 任务时出错

问题描述

我的 Azure 管道使用Azure CLI任务

- task: AzureCLI@2
    inputs:
      azureSubscription: '...'
      scriptType: pscore
      scriptLocation: 'inlineScript'
      inlineScript: |
        containers=$(az storage container list --connection-string '...')

任务失败并出现以下错误:

The term 'containers=$(az storage container list --connection-string '...')' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At D:\a\_temp\azureclitaskscript1582829158619_inlinescript.ps1:1 char:1
+ containers=$(az storage container list --connection-string 'DefaultEn ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : ObjectNotFound: (containers=$(az sto\u2026ame}" --output tsv):String) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : CommandNotFoundException

##[error]Script failed with error: Error: The process 'C:\Program Files\PowerShell\6\pwsh.exe' failed with exit code 1
C:\windows\system32\cmd.exe /D /S /C ""C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin\az.cmd" account clear"
Finishing: AzureCLI

我不知道为什么会这样。

标签: azure-devopsyamlazure-pipelines

解决方案


在这种情况下,问题是由于语法错误造成的:

$containers=$(az storage container list --connection-string '...')

推荐阅读