You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
512 B
PowerShell
19 lines
512 B
PowerShell
param (
|
|
[string] $ToolName
|
|
)
|
|
|
|
$targetPath = $env:AGENT_TOOLSDIRECTORY
|
|
if ([string]::IsNullOrEmpty($targetPath)) {
|
|
# GitHub Windows images don't have `AGENT_TOOLSDIRECTORY` variable
|
|
$targetPath = $env:RUNNER_TOOL_CACHE
|
|
}
|
|
|
|
if ($ToolName) {
|
|
$targetPath = Join-Path $targetPath $ToolName
|
|
}
|
|
|
|
if (Test-Path $targetPath) {
|
|
Get-ChildItem -Path $targetPath -Recurse | Where-Object { $_.LinkType -eq "SymbolicLink" } | ForEach-Object { $_.Delete() }
|
|
Remove-Item -Path $targetPath -Recurse -Force
|
|
}
|