File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
$BuildPSModule = @ {
2
2
Name = ' PSModuleUtils'
3
- Version = ' 1.6.0 '
3
+ Version = ' 1.6.1 '
4
4
Description = ' A module with helper functions to build and publish PowerShell modules to the PSGallery.'
5
5
Tags = (' PSEdition_Desktop' , ' PSEdition_Core' , ' Windows' )
6
6
}
Original file line number Diff line number Diff line change 1
- <#
1
+ <#
2
2
. SYNOPSIS
3
3
Builds a PowerShell module formatted like the ones located at github.com/thisjustin816.
4
4
@@ -138,7 +138,7 @@ function Build-PSModule {
138
138
$moduleVersion , $modulePrerelease = $Version -split ' -' , 2
139
139
$newModuleManifest = @ {
140
140
Path = $manifestPath
141
- Author = ( & git log -- format= ' %aN' | Sort-Object - Unique )
141
+ Author = (( & git log -- format= ' %aN' -- . | Sort-Object - Unique ) -join ' , ' )
142
142
CompanyName = $companyName
143
143
Copyright = " (c) $ ( Get-Date - Format yyyy ) $companyName . All rights reserved."
144
144
RootModule = " $Name .psm1"
You can’t perform that action at this time.
0 commit comments