Skip to content

Commit

Permalink
fix(scoop-info): Use pipe to separate bins (ScoopInstaller#4744)
Browse files Browse the repository at this point in the history
  • Loading branch information
rashil2000 authored Feb 17, 2022
1 parent 2651764 commit d1f828c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libexec/scoop-info.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d1f828c

Please sign in to comment.