From 79632c61a54e38f988bb452e8022c691cb203e5c Mon Sep 17 00:00:00 2001 From: Katie May <63071677+maykathm@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:21:49 +0100 Subject: [PATCH] tests: use quotation marks to support directories with spaces (#14948) --- .github/workflows/spread-results-reporter.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spread-results-reporter.yaml b/.github/workflows/spread-results-reporter.yaml index 9ae852947a5..e545275dea4 100644 --- a/.github/workflows/spread-results-reporter.yaml +++ b/.github/workflows/spread-results-reporter.yaml @@ -82,8 +82,8 @@ jobs: run: | find . -name "spread-json-${{ github.event.workflow_run.id }}*.zip" | while read filename; do dir="${filename%.zip}" - mkdir $dir - unzip $filename -d $dir + mkdir "$dir" + unzip "$filename" -d "$dir" done - name: Echo collected output