File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ Import-Module "$ClonePath\tools\build.psm1"
119
119
Install-Dependencies
120
120
121
121
# 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"
123
123
124
124
# Option 2: Execute the following commands to run tests with the merged PSModule.psm1
125
125
<#
Original file line number Diff line number Diff line change @@ -305,13 +305,13 @@ function Test-DailyBuild {
305
305
}
306
306
function New-ModulePSMFile {
307
307
$moduleFile = New-Item - Path $ArtifactRoot \PowerShellGet\PSModule.psm1 - ItemType File - Force
308
-
309
- # Add the localized data
308
+
309
+ # Add the localized data
310
310
' Import-LocalizedData LocalizedData -filename PSGet.Resource.psd1' | Out-File - FilePath $moduleFile
311
311
# Add the first part of the distributed .psm1 file from template.
312
312
Get-Content - Path " $ModuleRoot \private\modulefile\PartOne.ps1" | Out-File - FilePath $moduleFile - Append
313
313
314
- # Add a region and write out the private functi
314
+ # Add a region and write out the private functions.
315
315
" `n #region Private Functions" | Out-File - FilePath $moduleFile - Append
316
316
Get-Content $PrivateFunctions | Out-String | Out-File - FilePath $moduleFile - Append
317
317
" #endregion`n " | Out-File - FilePath $moduleFile - Append
You can’t perform that action at this time.
0 commit comments