Skip to content

Commit bedb7a4

Browse files
committed
fixes #2 - Expand-Archive bug
1 parent c4a3e1b commit bedb7a4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
],
2222
"cSpell.words": [
2323
"jakemorrison",
24+
"Pscx",
2425
"shortcode"
2526
]
2627
}

docs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [0.8.4]
99

10+
- Module Changes
11+
- Addressed bug where `Expand-XMLDataSet` can file if user has `Expand-Archive` from `Pscx` module, not from `Microsoft.PowerShell.Archive`
1012
- Build Updates
1113
- Added `MarkdownRepair.ps1` and added Markdown repair logic to InvokeBuild script. This is to account for an issue in PowerShell `7.4.0`+ where a new parameter was introduced that platyPS can not handle during help creation. Ref: [platyPS issue]([text](https://github.com/PowerShell/platyPS/issues/595)).
1214

src/pwshEmojiExplorer/Private/Expand-XMLDataSet.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function Expand-XMLDataSet {
5757
ErrorAction = 'Stop'
5858
Path = '{0}/{1}' -f $script:dataPath, $script:dataFileZip
5959
}
60-
$null = Expand-Archive @expandArchiveSplat
60+
$null = Microsoft.PowerShell.Archive\Expand-Archive @expandArchiveSplat
6161
Write-Verbose -Message 'Expand completed.'
6262
} #try
6363
catch {

0 commit comments

Comments
 (0)