Skip to content

Commit fbace4f

Browse files
🩹 [Refactor]: Update file path retrieval in Update-PSModuleManifestAliasesToExport.ps1 for improved accuracy
1 parent 02b3fdb commit fbace4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎scripts/helpers/Build/Update-PSModuleManifestAliasesToExport.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
}
4040

4141
# Get all child items in the module source folder of a powershell file type
42-
$files = Get-ChildItem -Path $publicFunctionsPath -Recurse -File -Include '*.ps1', '*.psm1' | Select-Object -ExpandProperty Path
42+
$files = Get-ChildItem -Path $publicFunctionsPath -Recurse -File -Include '*.ps1', '*.psm1' | Select-Object -ExpandProperty FullName
4343

4444
# Initialize an array to store all found aliases
4545
$allAliases = @()

0 commit comments

Comments
 (0)