Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit 8902813

Browse files
ThomasNietoalerickson
authored andcommitted
Fix Private Data Default Value (#425)
1 parent ceb60e9 commit 8902813

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PowerShellGet/private/functions/Get-PrivateData.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ function Get-PrivateData
3131
# Prerelease = ''
3232
3333
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
34-
# RequireLicenseAcceptance = $false
34+
# RequireLicenseAcceptance = `$false
3535
3636
# External dependent modules of this module
37-
# ExternalModuleDependencies = ''
37+
# ExternalModuleDependencies = @()
3838
3939
} # End of PSData hashtable
4040
@@ -201,7 +201,7 @@ function Get-PrivateData
201201
# Prerelease string of this module
202202
$PrereleaseLine
203203
204-
# Flag to indicate whether the module requires explicit user acceptance for install/update
204+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
205205
$RequireLicenseAcceptanceLine
206206
207207
# External dependent modules of this module

0 commit comments

Comments
 (0)