Skip to content

Commit 3dfc556

Browse files
authored
fix: don't fail if bin directory exists on windows (#189)
1 parent 3b7078e commit 3dfc556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ runs:
9999
if: startsWith(runner.os, 'Windows')
100100
shell: pwsh
101101
run: |
102-
New-Item -Path $env:HOME\bin -ItemType directory
102+
New-Item -Path $env:HOME\bin -ItemType directory -Force
103103
Push-Location $env:HOME\bin
104104
Invoke-WebRequest -Uri "https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe" -OutFile "coveralls.exe"
105105
Invoke-WebRequest -Uri "https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-checksums.txt" -OutFile "sha256sums.txt"

0 commit comments

Comments
 (0)