From ace5680343eebe817b6a28fa48900dfef18f0618 Mon Sep 17 00:00:00 2001 From: Vladimir Borisov Date: Thu, 12 Mar 2026 17:54:25 +0200 Subject: [PATCH] Remove build thread arm64 --- build-arm64.ps1 | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/build-arm64.ps1 b/build-arm64.ps1 index ec16187..2b635cc 100644 --- a/build-arm64.ps1 +++ b/build-arm64.ps1 @@ -1,21 +1,2 @@ -param ( - [String]$pw = $( Read-Host "Password" ) -) - -$thread = Start-ThreadJob -InputObject ($pw) -ScriptBlock { - $wshell = New-Object -ComObject wscript.shell; - $pw = "$($input)~" - while ($true) { - while ( -not $wshell.AppActivate("Token Logon")) { - Start-Sleep 1 - } - Start-Sleep 1 - $wshell.SendKeys($pw, $true) - Start-Sleep 1 - } -} - cargo build --release --target aarch64-pc-windows-msvc & "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /DSIGN "/Sstremiosign=`$qsigntool.exe`$q sign /fd SHA256 /t http://timestamp.digicert.com /n `$qSmart Code OOD`$q `$f" "setup\Stremio-arm64.iss" - -Stop-Job -Job $thread