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:
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
You can’t perform that action at this time.
0 commit comments