Fix typo in release-tool.ps1

This commit is contained in:
Jonathan White
2022-10-29 15:07:18 -04:00
parent 9b5b1d6dce
commit cdb10dce0c

View File

@@ -291,7 +291,7 @@ if ($Merge) {
# Only commit if there are changes
$changes = & git status --porcelain
if ($changes.Length > 0) {
if ($changes.Length -gt 0) {
Write-Host "Committing translation updates..."
Invoke-Cmd "git" "add -A ./share/translations/" -quiet
Invoke-Cmd "git" "commit -m `"Update translations`"" -quiet