Skip to content

Commit 65b3474

Browse files
committed
Fix nightly update filesize
1 parent dd2b40a commit 65b3474

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/internal/build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,9 +823,9 @@ function UpdateBuildService()
823823
return
824824
}
825825

826-
if (Test-Path $binZip)
826+
if (Test-Path "$exeSetup")
827827
{
828-
$fileInfo = (Get-Item "$binZip");
828+
$fileInfo = (Get-Item "$exeSetup");
829829
$fileTime = $fileInfo.CreationTime.ToString("yyyy-MM-ddTHH:mm:sszzz");
830830
$fileSize = $fileInfo.Length;
831831
}

0 commit comments

Comments
 (0)