Skip to content

Commit 5ad73ea

Browse files
committed
Add missing quotes
1 parent 0fd2ca9 commit 5ad73ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ jobs:
140140
tar -xvf ./sdist/*.tar.gz -C ./sdist_extract
141141
142142
# Get the extracted directory name
143-
EXTRACTED_DIR=$(ls -d ./sdist_extract/*/ | head -1)
143+
EXTRACTED_DIR="$(ls -d ./sdist_extract/*/ | head -1)"
144144
echo "SDIST_DIR=$(pwd)/${EXTRACTED_DIR}" >> $GITHUB_ENV
145145
146146
# Verify contents
147-
ls -la ${EXTRACTED_DIR}
147+
ls -la "${EXTRACTED_DIR}"
148148
149149
- name: Extract sdist (Windows)
150150
if: runner.os == 'Windows'
@@ -172,7 +172,7 @@ jobs:
172172
echo "SDIST_DIR=$extractedDir" | Out-File -FilePath $env:GITHUB_ENV -Append
173173
174174
# Verify contents
175-
Get-ChildItem $extractedDir
175+
Get-ChildItem "$extractedDir"
176176
177177
- name: Build wheels from sdist
178178
uses: pypa/cibuildwheel@v2.22.0

0 commit comments

Comments
 (0)