From 6eb0c8d4202d265951f5c165f0d82fff3bf81413 Mon Sep 17 00:00:00 2001 From: Yulong Wang <7679871+fs-eire@users.noreply.github.com> Date: Wed, 24 Nov 2021 13:54:43 -0800 Subject: [PATCH] fix build break in release pipeline for Node.js binding test (#9850) --- tools/ci_build/github/azure-pipelines/nodejs/templates/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci_build/github/azure-pipelines/nodejs/templates/test.yml b/tools/ci_build/github/azure-pipelines/nodejs/templates/test.yml index 2c2701d8da..0400d2d035 100644 --- a/tools/ci_build/github/azure-pipelines/nodejs/templates/test.yml +++ b/tools/ci_build/github/azure-pipelines/nodejs/templates/test.yml @@ -22,7 +22,7 @@ steps: displayName: 'Extract package file name (POSIX)' inputs: script: | - echo "##vso[task.setvariable variable=NpmPackageFilesForTest;]`ls $(Build.BinariesDirectory)/nodejs-artifact/*.tgz`" + echo "##vso[task.setvariable variable=NpmPackageFilesForTest;]`ls $(Build.BinariesDirectory)/nodejs-artifact/*.tgz | tr '\n' ' '`" workingDirectory: '$(Build.BinariesDirectory)/e2e_test' - script: |