Skip to content

Commit eae2e4b

Browse files
committed
Do not use cmd shell
1 parent 07fee96 commit eae2e4b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/test-windows.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,9 @@ jobs:
187187
# trim ~150MB for each job
188188
- name: Optimize build cache
189189
if: steps.build-cache.outputs.cache-hit != 'true'
190-
run: rmdir /S /Q winbuild\build\src
191-
shell: cmd
190+
run: |
191+
rm -rf winbuild\build\src
192+
shell: bash
192193

193194
- name: Build Pillow
194195
run: |
@@ -205,9 +206,7 @@ jobs:
205206
206207
- name: Test Pillow
207208
run: |
208-
path %GITHUB_WORKSPACE%\winbuild\build\bin;%PATH%
209209
.ci\test.cmd
210-
shell: cmd
211210
212211
- name: Prepare to upload errors
213212
if: failure()

0 commit comments

Comments
 (0)