File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,11 +140,11 @@ jobs:
140
140
tar -xvf ./sdist/*.tar.gz -C ./sdist_extract
141
141
142
142
# Get the extracted directory name
143
- EXTRACTED_DIR=$(ls -d ./sdist_extract/*/ | head -1)
143
+ EXTRACTED_DIR=" $(ls -d ./sdist_extract/*/ | head -1)"
144
144
echo "SDIST_DIR=$(pwd)/${EXTRACTED_DIR}" >> $GITHUB_ENV
145
145
146
146
# Verify contents
147
- ls -la ${EXTRACTED_DIR}
147
+ ls -la " ${EXTRACTED_DIR}"
148
148
149
149
- name : Extract sdist (Windows)
150
150
if : runner.os == 'Windows'
@@ -172,7 +172,7 @@ jobs:
172
172
echo "SDIST_DIR=$extractedDir" | Out-File -FilePath $env:GITHUB_ENV -Append
173
173
174
174
# Verify contents
175
- Get-ChildItem $extractedDir
175
+ Get-ChildItem " $extractedDir"
176
176
177
177
- name : Build wheels from sdist
178
178
uses : pypa/cibuildwheel@v2.22.0
You can’t perform that action at this time.
0 commit comments