Skip to content

Commit

Permalink
build: ???
Browse files Browse the repository at this point in the history
  • Loading branch information
ChecksumDev committed Jul 16, 2024
1 parent 0e15a7b commit 00c37e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/mbss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:
}
- name: Remove bin directory if exists
run: Remove-Item -Recurse -Force ./bin
run: |
if (Test-Path -Path ./bin) {
Remove-Item -Recurse -Force ./bin
}
- name: Unzip MBSS
run: Expand-Archive -Path MBSS.zip -DestinationPath ./bin
Expand Down

0 comments on commit 00c37e8

Please sign in to comment.