mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-22 19:41:08 +07:00
Debug
This commit is contained in:
parent
a1105722ad
commit
79735df611
2
.github/workflows/workflow.yml
vendored
2
.github/workflows/workflow.yml
vendored
@ -100,7 +100,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
# Dotnet .x version install
|
|
||||||
- name: Clear toolcache
|
- name: Clear toolcache
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
||||||
@ -125,7 +124,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
# Dotnet .* version install
|
|
||||||
- name: Clear toolcache
|
- name: Clear toolcache
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
$os = $args[0]
|
$os = $args[0]
|
||||||
|
|
||||||
$linuxDotnetPaths = @("/usr/share/dotnet", "$env:HOME/.dotnet")
|
$linuxDotnetPaths = @("/usr/share/dotnet")
|
||||||
$macOSDotnetPaths = @("$env:HOME/.dotnet")
|
$macOSDotnetPaths = @("$env:HOME/.dotnet")
|
||||||
$windowsDotnetPaths = @("$env:HOME\.dotnet",
|
$windowsDotnetPaths = @("$env:ProgramFiles\dotnet/*",
|
||||||
"$env:ProgramFiles\dotnet/*",
|
|
||||||
"$env:LocalAppData\Microsoft\dotnet/*")
|
"$env:LocalAppData\Microsoft\dotnet/*")
|
||||||
|
|
||||||
$pathsToClear = @()
|
$pathsToClear = @()
|
||||||
|
Loading…
Reference in New Issue
Block a user