Fix typo in release-tool.ps1

This commit is contained in:
Jonathan White 2022-10-29 15:07:18 -04:00
parent a5dee81e45
commit 6d23a3bd2c
No known key found for this signature in database
GPG Key ID: 440FC65F2E0C6E01

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