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
This commit is contained in:
Wes Carroll
2019-03-28 13:52:03 -04:00
parent 5b56a0c15b
commit 90e06a6dc5
+1 -1
View File
@@ -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: