diff --git a/release-tool.ps1 b/release-tool.ps1 index 0c2868f1a..76bb15790 100644 --- a/release-tool.ps1 +++ b/release-tool.ps1 @@ -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