Skip to content

Commit 8b33833

Browse files
Merge pull request #36 from theohbrothers/fix/modulemanifest-fix-invalid-tag-values
Fix (modulemanifest): Fix invalid tag values
2 parents adaf6b1 + 1497bbe commit 8b33833

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

build/definitions/modulemanifest/definition.ps1

+7-6
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@
3535
# PSData = @{ # Properties within PSData will be correctly added to the manifest via Update-ModuleManifest without the PSData key. Leave the key commented out.
3636
Tags = @(
3737
'pwsh',
38-
'powershell ',
39-
'logrotate ',
38+
'powershell',
39+
'module'
40+
'logrotate',
4041
'log',
41-
'logs',
42-
'log-management ',
43-
'log-rotation ',
44-
'log-administration'
42+
'log-administration',
43+
'log-management',
44+
'log-rotation',
45+
'logs'
4546
)
4647
LicenseUri = 'https://raw.githubusercontent.com/theohbrothers/Log-Rotate/master/LICENSE'
4748
ProjectUri = 'https://github.com/theohbrothers/Log-Rotate'

src/Log-Rotate/Log-Rotate.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ PrivateData = @{
9595
PSData = @{
9696

9797
# Tags applied to this module. These help with module discovery in online galleries.
98-
Tags = 'pwsh','powershell ','logrotate ','log','logs','log-management ','log-rotation ','log-administration'
98+
Tags = 'pwsh','powershell','module','logrotate','log','log-administration','log-management','log-rotation','logs'
9999

100100
# A URL to the license for this module.
101101
LicenseUri = 'https://raw.githubusercontent.com/theohbrothers/Log-Rotate/master/LICENSE'

0 commit comments

Comments
 (0)