From 5247de38dfd42a93faa05b9c49170c85246f01a9 Mon Sep 17 00:00:00 2001 From: haosicheng Date: Mon, 13 Oct 2025 12:06:50 +0800 Subject: [PATCH] =?UTF-8?q?[patch]=20=E4=BF=AE=E6=94=B9=E9=80=BB=E8=BE=91:?= =?UTF-8?q?=20=E5=9C=A8=E7=94=A8=E6=88=B7=E8=AF=AF=E8=A7=A6=E6=88=96?= =?UTF-8?q?=E5=BC=80=E4=BA=86=E5=A4=9A=E4=B8=AAGUI=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E7=9A=84=E6=97=B6=E5=80=99=E4=B8=8D=E8=83=BD=E5=90=8C=E6=97=B6?= =?UTF-8?q?=E5=BB=BA=E7=AB=8B=E5=A4=9A=E4=B8=AA=E8=BF=9E=E6=8E=A5=20?= =?UTF-8?q?=E7=A1=AE=E4=BF=9D=E4=B8=80=E4=B8=AA=E8=B4=A6=E5=8F=B7=E5=8F=AA?= =?UTF-8?q?=E8=83=BD=E5=BB=BA=E7=AB=8B=E4=B8=80=E4=B8=AA=E4=B8=8E=E5=90=8E?= =?UTF-8?q?=E7=AB=AF=E7=9A=84=E8=BF=9E=E6=8E=A5=20=E5=8F=8B=E5=A5=BD?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E7=9A=84=E9=9B=86=E6=88=90review=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9powershell=E8=AF=AD=E6=B3=95=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/gui-version-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/gui-version-release.yml b/.gitea/workflows/gui-version-release.yml index 8b1c6cb..fca7623 100644 --- a/.gitea/workflows/gui-version-release.yml +++ b/.gitea/workflows/gui-version-release.yml @@ -409,7 +409,7 @@ jobs: } # Clean up any existing rebase state before starting - $rebaseExists = Test-Path ".git/rebase-merge" -Or (Test-Path ".git/rebase-apply"); + $rebaseExists = (Test-Path ".git/rebase-merge") -or (Test-Path ".git/rebase-apply"); if ($rebaseExists) { Write-Host "WARNING: Found existing rebase state, cleaning up..."; git rebase --abort 2>$null; @@ -509,7 +509,7 @@ jobs: Write-Host "Preparing for retry $i..."; # Step 1: Clean up any rebase state - $rebaseCheck = Test-Path ".git/rebase-merge" -Or (Test-Path ".git/rebase-apply"); + $rebaseCheck = (Test-Path ".git/rebase-merge") -or (Test-Path ".git/rebase-apply"); if ($rebaseCheck) { Write-Host "Cleaning up rebase state..."; git rebase --abort 2>$null;