11 lines
252 B
PowerShell
11 lines
252 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
|
|
$packageName = 'codebase-memory-mcp'
|
|
$installDir = Join-Path $env:ChocolateyBinRoot $packageName
|
|
|
|
Uninstall-BinFile -Name 'codebase-memory-mcp'
|
|
|
|
if (Test-Path $installDir) {
|
|
Remove-Item $installDir -Recurse -Force
|
|
}
|