Skip to content

Commit d5d92ab

Browse files
committed
Update wording in initialization script a bit
1 parent 4191b07 commit d5d92ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_InitializeRepository.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This script will delete all files in this repo and replace them with template fi
77
If you have made changes to any files you may want to commit them before continuing, as this script will likely overwrite them.
88
"
99

10-
[string] $moduleName = Read-Host -Prompt "Enter the name of your module (e.g. 'YourModuleName')"
10+
[string] $moduleName = Read-Host -Prompt "Enter the name of your module without spaces (e.g. 'YourModuleName')"
1111

1212
[string] $organizationName = Read-Host -Prompt "Enter your name, or the the name of your organization (e.g. 'My Company'). This will be used in the module manifest and repository license"
1313

@@ -16,6 +16,8 @@ If you have made changes to any files you may want to commit them before continu
1616
Remove-TemplateModuleFiles
1717
Set-ModuleFileNames -moduleName $moduleName
1818
Set-TemplateTokenValuesInAllRepoFiles -moduleName $moduleName -organizationName $organizationName
19+
20+
Write-Host -ForegroundColor Green "Repo initialization complete. You can now commit the changes to your repository."
1921
}
2022

2123
Begin

0 commit comments

Comments
 (0)