diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c04b4faff..108b9dc227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Bug Fixes +- **bucket:** Make sure `list_buckets` return array ([#4979](https://github.com/ScoopInstaller/Scoop/issues/4979)) - **chore:** Deprecate tls1 and tls1.1 ([#4950](https://github.com/ScoopInstaller/Scoop/issues/4950)) - **chore:** Update Nonportable bucket URL ([#4955](https://github.com/ScoopInstaller/Scoop/issues/4955)) - **core:** Using `Invoke-Command` instead of `Invoke-Expression` ([#4941](https://github.com/ScoopInstaller/Scoop/issues/4941)) diff --git a/lib/buckets.ps1 b/lib/buckets.ps1 index 7254b7e592..fa3fc8d6c5 100644 --- a/lib/buckets.ps1 +++ b/lib/buckets.ps1 @@ -109,7 +109,7 @@ function list_buckets { Measure-Object | Select-Object -ExpandProperty Count $buckets += [PSCustomObject]$bucket } - $buckets + ,$buckets } function add_bucket($name, $repo) {