Update the scripts

This commit is contained in:
Markus Fleschutz
2021-03-16 08:45:53 +01:00
parent 153bdabaec
commit 8d6f38ff40
6 changed files with 20 additions and 14 deletions

View File

@ -9,10 +9,10 @@
param($RepoDir = "$PWD", $Format = "compact")
try {
write-output "Fetching updates in Git repository $RepoDir ..."
write-output "Fetching updates for Git repository $RepoDir ..."
if (-not(test-path "$RepoDir")) { throw "Can't access Git repository directory: $RepoDir" }
set-location $RepoDir
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }