Rename to build-repo.ps1 and build-repos.ps1

This commit is contained in:
Markus Fleschutz
2021-10-06 09:27:16 +02:00
parent 9e448e6a90
commit fd84a498ac
4 changed files with 11 additions and 10 deletions

View File

@ -1,11 +1,12 @@
<#
.SYNOPSIS
Builds a Git repository supporting cmake,configure,autogen,Imakefile,Makefile
Builds a Git repository
.DESCRIPTION
make-repo.ps1 [<RepoDir>]
<RepoDir> is the path to the Git repository
Supports building with cmake, configure, autogen, Imakefile and Makefile.
.PARAMETER RepoDir
Specifies the path to the Git repository.
.EXAMPLE
PS> ./make-repo C:\MyRepo
PS> ./build-repo C:\MyRepo
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
make-repos.ps1 [<ParentDir>]
.EXAMPLE
PS> ./make-repos C:\MyRepos
PS> ./build-repos C:\MyRepos
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
@ -25,7 +25,7 @@ try {
[int]$Step = 1
foreach ($Folder in $Folders) {
& "$PSScriptRoot/make-repo.ps1" "$Folder"
& "$PSScriptRoot/build-repo.ps1" "$Folder"
$Step++
}