From 7cabf1c82118edf1e2c6dda48a49fe5b4321e2ae Mon Sep 17 00:00:00 2001 From: fourbroad Date: Thu, 30 Jul 2026 10:18:54 +0800 Subject: [PATCH] fix(install): force TLS 1.2 in Windows PowerShell command (server rejects TLS<1.2) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c734c39..ddb312a 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ curl -fsSL https://eightarms.net/fourbroad/octopus-release/raw/branch/main/insta **Windows (PowerShell):** ```powershell +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 irm https://eightarms.net/fourbroad/octopus-release/raw/branch/main/install.ps1 | iex ```