pull/165/head
Vladimir Safonkin 5 years ago
parent a1105722ad
commit 79735df611

@ -100,7 +100,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
# Dotnet .x version install
- name: Clear toolcache
shell: pwsh
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
@ -125,7 +124,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
# Dotnet .* version install
- name: Clear toolcache
shell: pwsh
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}

@ -1,9 +1,8 @@
$os = $args[0]
$linuxDotnetPaths = @("/usr/share/dotnet", "$env:HOME/.dotnet")
$linuxDotnetPaths = @("/usr/share/dotnet")
$macOSDotnetPaths = @("$env:HOME/.dotnet")
$windowsDotnetPaths = @("$env:HOME\.dotnet",
"$env:ProgramFiles\dotnet/*",
$windowsDotnetPaths = @("$env:ProgramFiles\dotnet/*",
"$env:LocalAppData\Microsoft\dotnet/*")
$pathsToClear = @()

Loading…
Cancel
Save