Skip to content

Commit a999ec9

Browse files
🩹 [Refactor]: Update Build-PSModuleBase.ps1 and Build-PSModuleRootModule.ps1 to log relative paths for output files
1 parent d5eb28d commit a999ec9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

‎scripts/helpers/Build/Build-PSModuleBase.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
}
4444

4545
LogGroup 'Build base - Result' {
46-
# Print relative paths
4746
Get-ChildItem -Path $ModuleOutputFolder -Recurse -Force | Resolve-Path -Relative | Sort-Object
4847
}
4948
}

‎scripts/helpers/Build/Build-PSModuleRootModule.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,6 @@ Export-ModuleMember @exports
262262
}
263263

264264
LogGroup 'Build root module - Validate - File list' {
265-
(Get-ChildItem -Path $ModuleOutputFolder -Recurse -Force).FullName | Sort-Object
265+
Get-ChildItem -Path $ModuleOutputFolder -Recurse -Force | Resolve-Path -Relative | Sort-Object
266266
}
267267
}

0 commit comments

Comments
 (0)