Skip to content

Commit bd0fd01

Browse files
committed
unzip overwrite
1 parent 8fe7bd0 commit bd0fd01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,13 +200,13 @@ jobs:
200200
if: ${{ runner.os == 'Windows' || runner.os == 'macOS' }}
201201
shell: bash # Windows only has unzip in bash shell
202202
run: |
203-
unzip pico-sdk-tools*.zip
203+
unzip -o pico-sdk-tools*.zip
204204
ls
205-
unzip picotool*.zip
205+
unzip -o picotool*.zip
206206
ls
207-
unzip openocd*.zip || true
207+
unzip -o openocd*.zip || true
208208
ls
209-
unzip riscv-toolchain*.zip || true
209+
unzip -o riscv-toolchain*.zip || true
210210
ls
211211
- name: Extract build (tar.gz)
212212
if: ${{ runner.os == 'Linux' }}

0 commit comments

Comments
 (0)