File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/ScriptModuleRepositoryTemplate Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Describe 'New-PowerShellScriptModuleRepository' {
2626 $expectedModuleTestsFilePath = Join-Path - Path $expectedModuleDirectoryPath - ChildPath " $moduleName .Tests.ps1"
2727
2828 # Act.
29- New-PowerShellScriptModuleRepository - RepositoryDirectoryPath $repositoryDirectoryPath - ModuleName $moduleName - OrganizationName $organizationName
29+ New-PowerShellScriptModuleRepository - RepositoryDirectoryPath $repositoryDirectoryPath - ModuleName $moduleName - OrganizationName $organizationName - Verbose
3030
3131 # Assert.
3232 $expectedModuleDirectoryPath | Should - Exist
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ function CopyTemplateFilesToRepositoryRoot([string] $repositoryDirectoryPath)
6868 [string ] $templateModuleDirectoryPath = " $PSScriptRoot \TemplateRepoFiles"
6969 if (Test-Path - Path $templateModuleDirectoryPath - PathType Container)
7070 {
71+ Write-Verbose " Copying the template repository files from '$templateModuleDirectoryPath ' to the repository directory '$repositoryDirectoryPath '."
7172 Copy-Item - Path $templateModuleDirectoryPath \* - Destination $repositoryDirectoryPath - Recurse - Force
7273 }
7374}
You can’t perform that action at this time.
0 commit comments