Skip to content

Commit 616fae4

Browse files
🩹 [Refactor]: Modify Build-PSModuleBase.ps1 to log relative paths for output files
1 parent a2c604c commit 616fae4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

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

4545
LogGroup 'Build base - Result' {
46-
(Get-ChildItem -Path $ModuleOutputFolder -Recurse -Force).FullName | Sort-Object
46+
# Print relative paths
47+
Get-ChildItem -Path $ModuleOutputFolder -Recurse -Force | Resolve-Path -Relative | Sort-Object
4748
}
4849
}

0 commit comments

Comments
 (0)