From 37a64b60d5997fa362f186c6dc91e25ccafa1abf Mon Sep 17 00:00:00 2001 From: Noah Sherwin Date: Tue, 28 Jan 2025 18:45:58 -0800 Subject: [PATCH] fix(scoop-status): import lib/buckets.ps1 for Get-LocalBucket This missing import was causing tests to fail. --- libexec/scoop-status.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/libexec/scoop-status.ps1 b/libexec/scoop-status.ps1 index 824f765751..dfa619da5b 100644 --- a/libexec/scoop-status.ps1 +++ b/libexec/scoop-status.ps1 @@ -6,6 +6,7 @@ . "$PSScriptRoot\..\lib\manifest.ps1" # 'manifest' 'parse_json' "install_info" . "$PSScriptRoot\..\lib\versions.ps1" # 'Select-CurrentVersion' +. "$PSScriptRoot\..\lib\buckets.ps1" # 'Get-LocalBucket' # check if scoop needs updating $currentdir = versiondir 'scoop' 'current'