We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fd2ca9 commit 5ad73eaCopy full SHA for 5ad73ea
1 file changed
.github/workflows/build.yml
@@ -140,11 +140,11 @@ jobs:
140
tar -xvf ./sdist/*.tar.gz -C ./sdist_extract
141
142
# Get the extracted directory name
143
- EXTRACTED_DIR=$(ls -d ./sdist_extract/*/ | head -1)
+ EXTRACTED_DIR="$(ls -d ./sdist_extract/*/ | head -1)"
144
echo "SDIST_DIR=$(pwd)/${EXTRACTED_DIR}" >> $GITHUB_ENV
145
146
# Verify contents
147
- ls -la ${EXTRACTED_DIR}
+ ls -la "${EXTRACTED_DIR}"
148
149
- name: Extract sdist (Windows)
150
if: runner.os == 'Windows'
@@ -172,7 +172,7 @@ jobs:
172
echo "SDIST_DIR=$extractedDir" | Out-File -FilePath $env:GITHUB_ENV -Append
173
174
175
- Get-ChildItem $extractedDir
+ Get-ChildItem "$extractedDir"
176
177
- name: Build wheels from sdist
178
uses: pypa/cibuildwheel@v2.22.0
0 commit comments