File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/Template.PowerShell.ScriptModule Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,11 @@ function Copy-TemplateFilesToRepositoryRoot([string] $repositoryDirectoryPath)
4141{
4242 if (-not (Test-Path - Path $repositoryDirectoryPath - PathType Container))
4343 {
44+ Write-Verbose " Creating the repository directory '$repositoryDirectoryPath '."
4445 New-Item - Path $repositoryDirectoryPath - ItemType Directory > $null
4546 }
4647
47- [string ] $templateModuleDirectoryPath = " $repositoryDirectoryPath \src\Template.PowerShell.ScriptModule \TemplateRepoFiles"
48+ [string ] $templateModuleDirectoryPath = " $PSScriptRoot \TemplateRepoFiles"
4849 if (Test-Path - Path $templateModuleDirectoryPath - PathType Container)
4950 {
5051 Copy-Item - Path $templateModuleDirectoryPath \* - Destination $repositoryDirectoryPath - Recurse - Force
You can’t perform that action at this time.
0 commit comments