From cdb10dce0c304a6a7891d23bc2a61de66e91894b Mon Sep 17 00:00:00 2001 From: Jonathan White Date: Sat, 29 Oct 2022 15:07:18 -0400 Subject: [PATCH] Fix typo in release-tool.ps1 --- release-tool.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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