Update list-tags.ps1

This commit is contained in:
Markus Fleschutz 2021-05-27 08:12:33 +02:00
parent 43b01111ab
commit 873ec7818f

View File

@ -13,15 +13,14 @@ try {
$Null = (git --version) $Null = (git --version)
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
$RepoDirName = (get-item "$RepoDir").Name "🢃 Fetching updates..."
"🢃 Fetching updates for Git repository 📂$RepoDirName ..." & git -C "$RepoDir" fetch --all --quiet
& git -C "$RepoDir" fetch --all
if ($lastExitCode -ne "0") { throw "'git fetch --all' failed" } if ($lastExitCode -ne "0") { throw "'git fetch --all' failed" }
write-output "" $RepoDirName = (get-item "$RepoDir").Name
write-output "Git Tags" [system.threading.thread]::currentthread.currentculture=[system.globalization.cultureinfo]"en-US"
write-output "--------" ""
"🔖 Tags in Git repository 📂$RepoDirName as of $((Get-Date).ToShortDateString()):"
& git -C "$RepoDir" tag --list "$Pattern" --column & git -C "$RepoDir" tag --list "$Pattern" --column
if ($lastExitCode -ne "0") { throw "'git tag --list' failed" } if ($lastExitCode -ne "0") { throw "'git tag --list' failed" }