Skip to content

Commit 664e667

Browse files
author
L. Yeung
authored
fix(scoop-status): Correct formatting of Info output (#5047)
* fix(scoop-status): Correct formatting of `Info` output * Update CHANGELOG.md
1 parent 80b52e3 commit 664e667

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [Unreleased](https://github.com/ScoopInstaller/Scoop/compare/master...develop)
2+
3+
### Bug Fixes
4+
5+
- **scoop-status:** Correct formatting of `Info` output ([#5047](https://github.com/ScoopInstaller/Scoop/issues/5047))
6+
17
## [v0.2.3](https://github.com/ScoopInstaller/Scoop/compare/v0.2.2...v0.2.3) - 2022-07-07
28

39
### Features

libexec/scoop-status.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $true, $false | ForEach-Object { # local and global apps
5757
$item.'Installed Version' = $status.version
5858
$item.'Latest Version' = if ($status.outdated) { $status.latest_version } else { "" }
5959
$item.'Missing Dependencies' = $status.missing_deps -Split ' ' -Join ' | '
60-
$info = $()
60+
$info = @()
6161
if ($status.failed) { $info += 'Install failed' }
6262
if ($status.hold) { $info += 'Held package' }
6363
if ($status.removed) { $info += 'Manifest removed' }

0 commit comments

Comments
 (0)