diff --git a/Scripts/list-repos.ps1 b/Scripts/list-repos.ps1 index c2bb54df..b5a2f0cf 100755 --- a/Scripts/list-repos.ps1 +++ b/Scripts/list-repos.ps1 @@ -46,7 +46,7 @@ try { $Null = (git --version) if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } - ListRepos | Format-Table -property @{e='Repository';width=20},@{e='Latest Tag';width=18},@{e='Branch';width=14},@{e='Updates';width=8},Status + ListRepos | Format-Table -property @{e='Repository';width=20},@{e='Latest Tag';width=18},@{e='Branch';width=20},@{e='Updates';width=8},Status exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"