From 07486bf37a6d443b70298e25c93fd389eb4e3f64 Mon Sep 17 00:00:00 2001 From: huanld Date: Sun, 31 May 2026 08:39:45 +0700 Subject: [PATCH] fix(deploy): point tray deploy script at signed repo dist binary deploy-tray-1.0.1.ps1 copied from the old staging path (C:\Users\huanld\tailscale\dist) which held the unsigned build; point it at the repo dist/ that holds the Azure-signed tailscale-tray.exe. Co-Authored-By: Claude Opus 4.8 (1M context) --- deploy-tray-1.0.1.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-tray-1.0.1.ps1 b/deploy-tray-1.0.1.ps1 index 0c82bad38..e71ab4f69 100644 --- a/deploy-tray-1.0.1.ps1 +++ b/deploy-tray-1.0.1.ps1 @@ -17,7 +17,7 @@ if (-not $isAdmin) { Start-Transcript -Path "$env:TEMP\deploy-tray-1.0.1-log.txt" -Force | Out-Null -$src = "C:\Users\huanld\tailscale\dist\tailscale-tray.exe" +$src = "C:\Users\huanld\Desktop\TailscaleCustom\tailscale-custom\dist\tailscale-tray.exe" $dest = "C:\Program Files (x86)\Tailscale-Custom\tailscale-tray.exe" if (-not (Test-Path $src)) { Write-Error "Khong tim thay build moi: $src"; Stop-Transcript | Out-Null; exit 1 }