From 17b15afc0e2f8a15b01b50fe650a1b2be65bdf1d Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Wed, 3 Jul 2019 22:47:27 +0200 Subject: [PATCH] fix windows cache key --- build/azure-pipelines/win32/product-build-win32.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/azure-pipelines/win32/product-build-win32.yml b/build/azure-pipelines/win32/product-build-win32.yml index b16186ed584..5983f19da6a 100644 --- a/build/azure-pipelines/win32/product-build-win32.yml +++ b/build/azure-pipelines/win32/product-build-win32.yml @@ -1,7 +1,7 @@ steps: - script: | mkdir .build -ea 0 - echo $env:BUILD_SOURCEVERSION > .build\commit + "$env:BUILD_SOURCEVERSION`n" | Out-File -NoNewLine .build\commit displayName: Prepare cache flag - task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1