Skip to content

Commit

Permalink
tests: use quotation marks to support directories with spaces (#14948)
Browse files Browse the repository at this point in the history
  • Loading branch information
maykathm authored Jan 20, 2025
1 parent faeb0e0 commit 79632c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/spread-results-reporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 79632c6

Please sign in to comment.