From 589990db05a674ef7e68ea5d1ba2b07a07e2ace3 Mon Sep 17 00:00:00 2001 From: Chawye Hsu Date: Wed, 8 May 2024 11:14:46 +0800 Subject: [PATCH 1/2] fix(scoop-cache): Fix regression in 36026f18 Signed-off-by: Chawye Hsu --- libexec/scoop-cache.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/scoop-cache.ps1 b/libexec/scoop-cache.ps1 index f390c258ad..30e8354fca 100644 --- a/libexec/scoop-cache.ps1 +++ b/libexec/scoop-cache.ps1 @@ -48,7 +48,7 @@ function cacheremove($app) { $files | ForEach-Object { $curr = cacheinfo $_ - Write-Host "Removing $($curr.URL)..." + Write-Host "Removing $($_.Name)..." Remove-Item $_.FullName if(Test-Path "$cachedir\$($curr.Name).txt") { Remove-Item "$cachedir\$($curr.Name).txt" From 707b2cd4b9d48f7981c210de3220bef16df56dde Mon Sep 17 00:00:00 2001 From: Chawye Hsu Date: Wed, 8 May 2024 11:21:10 +0800 Subject: [PATCH 2/2] update chglog Signed-off-by: Chawye Hsu --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 619b1db94c..1b439a5acc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - **scoop-search:** Catch error of parsing invalid manifest ([#5930](https://github.com/ScoopInstaller/Scoop/issues/5930)) - **autoupdate:** Copy `PSCustomObject`-type properties within `autoupdate` to prevent reference changes ([#5934](https://github.com/ScoopInstaller/Scoop/issues/5934)) - **system:** Fix argument passing to `Split-PathLikeEnvVar()` in deprecated `strip_path()` ([#5937](https://github.com/ScoopInstaller/Scoop/issues/5937)) +- **scoop-cache:** Fix regression in 36026f18 ([#5944](https://github.com/ScoopInstaller/Scoop/issues/5944)) ## [v0.4.1](https://github.com/ScoopInstaller/Scoop/compare/v0.4.0...v0.4.1) - 2024-04-25