From d1f828c94275641b86838e90a041af3315fb7d0f Mon Sep 17 00:00:00 2001 From: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> Date: Thu, 17 Feb 2022 19:21:52 +0530 Subject: [PATCH] fix(scoop-info): Use pipe to separate bins (#4744) --- libexec/scoop-info.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/scoop-info.ps1 b/libexec/scoop-info.ps1 index 1574bc9797..4a1ad647fd 100644 --- a/libexec/scoop-info.ps1 +++ b/libexec/scoop-info.ps1 @@ -99,7 +99,7 @@ if ($binaries) { $binary_output += $_ } } - $item.Binaries = $binary_output -join "`n" + $item.Binaries = $binary_output -join " | " } $env_set = (arch_specific 'env_set' $manifest $install.architecture) $env_add_path = (arch_specific 'env_add_path' $manifest $install.architecture)