Skip to content

Commit

Permalink
fix: don't fail if bin directory exists on windows (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Sep 7, 2023
1 parent 3b7078e commit 3dfc556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -99,7 +99,7 @@ runs:
if: startsWith(runner.os, 'Windows')
shell: pwsh
run: |
New-Item -Path $env:HOME\bin -ItemType directory
New-Item -Path $env:HOME\bin -ItemType directory -Force
Push-Location $env:HOME\bin
Invoke-WebRequest -Uri "https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe" -OutFile "coveralls.exe"
Invoke-WebRequest -Uri "https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-checksums.txt" -OutFile "sha256sums.txt"
Expand Down

0 comments on commit 3dfc556

Please sign in to comment.