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

Fix Private Data Default Value #425

Merged
merged 3 commits into from
Feb 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/PowerShellGet/private/functions/Get-PrivateData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ function Get-PrivateData
# Prerelease = ''

# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
# RequireLicenseAcceptance = `$false

# External dependent modules of this module
# ExternalModuleDependencies = ''
# ExternalModuleDependencies = @()

} # End of PSData hashtable

Expand Down Expand Up @@ -201,7 +201,7 @@ function Get-PrivateData
# Prerelease string of this module
$PrereleaseLine

# Flag to indicate whether the module requires explicit user acceptance for install/update
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
$RequireLicenseAcceptanceLine

# External dependent modules of this module
Expand Down