From 02306978b8feee9e0dfb55fc9a175a3baea04d38 Mon Sep 17 00:00:00 2001 From: Daniel Villarreal Date: Fri, 10 Jun 2022 11:12:23 +0200 Subject: [PATCH] fix(buckets): Return as an array --- lib/buckets.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {