From c599244541eefcd6310bd9ea51e5566b191280bb Mon Sep 17 00:00:00 2001 From: Matt Cooley Date: Fri, 22 Mar 2019 12:52:52 -0700 Subject: [PATCH] Fix YAML --- build/pipelines/azure-pipelines.loc.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/pipelines/azure-pipelines.loc.yaml b/build/pipelines/azure-pipelines.loc.yaml index ff1b48b7..d1ef8552 100644 --- a/build/pipelines/azure-pipelines.loc.yaml +++ b/build/pipelines/azure-pipelines.loc.yaml @@ -32,11 +32,11 @@ jobs: outputDirectoryRoot: src/Calculator/Resources/ - script: | - cd $(Build.SourcesDirectory) - git add -A - git diff --cached --exit-code - echo '##vso[task.setvariable variable=hasChanges]%errorlevel%' - git diff --cached > $(Build.ArtifactStagingDirectory)\LocalizedStrings.patch + cd $(Build.SourcesDirectory) + git add -A + git diff --cached --exit-code + echo '##vso[task.setvariable variable=hasChanges]%errorlevel%' + git diff --cached > $(Build.ArtifactStagingDirectory)\LocalizedStrings.patch displayName: Check for changes and create patch file - task: PublishPipelineArtifact@0