From 90e06a6dc580dfecb7188b283271b6dac5ebc910 Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Thu, 28 Mar 2019 13:52:03 -0400 Subject: [PATCH] Update az pipeline Windows Script Using single quotes will not execute the script. Changing to double quotes should actually run the build process on the Windows Host --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 77f1202..882dc54 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,7 +13,7 @@ jobs: vmImage: vs2017-win2016 steps: - script: | - pwsh -c '.\build.ps1 -Verbose' + pwsh -c ".\build.ps1 -Verbose" displayName: 'Build and Test' - task: PublishTestResults@2 inputs: