mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Fixed list-tags.ps1
This commit is contained in:
parent
6d75ce1ec5
commit
07ddbc78a7
@ -30,10 +30,11 @@ try {
|
|||||||
Write-Progress "⏳ (2/3) Checking local repository... "
|
Write-Progress "⏳ (2/3) Checking local repository... "
|
||||||
if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
|
|
||||||
Write-Progress "⏳ (3/3) Fetching latest tags..."
|
Write-Progress "⏳ (3/3) Fetching remote tags..."
|
||||||
& git -C "$RepoDir" fetch --tags
|
& git -C "$RepoDir" fetch --all --tags
|
||||||
if ($lastExitCode -ne "0") { throw "'git fetch --tags' failed" }
|
Write-Progress -completed "Done."
|
||||||
Write-Progress -completed "."
|
if ($lastExitCode -ne "0") { throw "'git fetch --all --tags' failed" }
|
||||||
|
|
||||||
""
|
""
|
||||||
"Tag Description"
|
"Tag Description"
|
||||||
"--- -----------"
|
"--- -----------"
|
||||||
|
Loading…
Reference in New Issue
Block a user