From 874ba222c326f1b30fd174b62ca44fa19a23158a Mon Sep 17 00:00:00 2001 From: "Christoph Bergmeister [MVP]" Date: Fri, 17 Apr 2020 23:09:58 +0100 Subject: [PATCH] try use bracket syntax https://docs.microsoft.com/en-us/azure/devops/pipelines/process/expressions?view=azure-devops#variables --- .azure-pipelines-ci/templates/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines-ci/templates/test.yaml b/.azure-pipelines-ci/templates/test.yaml index 2acdcc6f5..a4d0745cc 100644 --- a/.azure-pipelines-ci/templates/test.yaml +++ b/.azure-pipelines-ci/templates/test.yaml @@ -13,7 +13,7 @@ steps: displayName: 'Test' inputs: targetType: inline - pwsh: ${{ parameters.pwsh }} + pwsh: $[ parameters.pwsh ] script: | Import-Module .\tools\appveyor.psm1 Invoke-AppveyorTest -CheckoutPath $env:BUILD_SOURCESDIRECTORY @@ -21,4 +21,4 @@ steps: inputs: testRunner: NUnit testResultsFiles: 'TestResults.xml' - condition: succeededOrFailed() \ No newline at end of file + condition: succeededOrFailed()