Skip to content

Commit bc3363e

Browse files
committed
tweaks
1 parent 8e5869f commit bc3363e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Import-Module "$ClonePath\tools\build.psm1"
119119
Install-Dependencies
120120
121121
# Option 1: Execute the following, replacing $ClonePath, when testing PowerShellGet module changes under $ClonePath.
122-
# $env:PSModulePath = "$ClonePath;$env:PSModulePath"
122+
# $env:PSModulePath = "$ClonePath\src;$env:PSModulePath"
123123
124124
# Option 2: Execute the following commands to run tests with the merged PSModule.psm1
125125
<#

tools/build.psm1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,13 +305,13 @@ function Test-DailyBuild {
305305
}
306306
function New-ModulePSMFile {
307307
$moduleFile = New-Item -Path $ArtifactRoot\PowerShellGet\PSModule.psm1 -ItemType File -Force
308-
309-
# Add the localized data
308+
309+
# Add the localized data
310310
'Import-LocalizedData LocalizedData -filename PSGet.Resource.psd1' | Out-File -FilePath $moduleFile
311311
# Add the first part of the distributed .psm1 file from template.
312312
Get-Content -Path "$ModuleRoot\private\modulefile\PartOne.ps1" | Out-File -FilePath $moduleFile -Append
313313

314-
# Add a region and write out the private functi
314+
# Add a region and write out the private functions.
315315
"`n#region Private Functions" | Out-File -FilePath $moduleFile -Append
316316
Get-Content $PrivateFunctions | Out-String | Out-File -FilePath $moduleFile -Append
317317
"#endregion`n" | Out-File -FilePath $moduleFile -Append

0 commit comments

Comments
 (0)