Improved both scripts

This commit is contained in:
Markus Fleschutz 2021-03-10 10:51:59 +01:00
parent 68711177c5
commit 6fa8ed3a78
2 changed files with 9 additions and 7 deletions

View File

@ -11,7 +11,7 @@ param($RepoDir = "$PWD")
try {
write-output "Fetching repository $RepoDir ..."
if (-not(test-path "$RepoDir")) { throw "Repository at $RepoDir is non-existing" }
if (-not(test-path "$RepoDir")) { throw "Can't access Git repository at: $RepoDir" }
set-location "$RepoDir"
& git --version

View File

@ -9,15 +9,17 @@
param($RepoDir = "$PWD", $Pattern = "*")
try {
$null = $(git --version)
} catch {
write-error "ERROR: can't execute 'git' - make sure Git is installed and available"
exit 1
}
write-output "Listing Git branches of repository $RepoDir ..."
try {
if (-not(test-path "$RepoDir")) { throw "Can't access Git repository at: $RepoDir" }
set-location $RepoDir
$null = (git --version)
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
& git fetch --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --recurse-submodules' failed" }
$Branches = $(git branch --list --remotes --no-color --no-column)
if ($lastExitCode -ne "0") { throw "'git branch --list' failed" }