From 02e9fd2793e0baadd2b03dce0e9e4e71c8d951c9 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 1 Aug 2026 17:10:51 +0000 Subject: [PATCH] fix: add --custom-ngx-build back, fix preflight URL --- internal/native/native.go | 1 + internal/preflight/preflight.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/native/native.go b/internal/native/native.go index 7c45a96..675f89a 100644 --- a/internal/native/native.go +++ b/internal/native/native.go @@ -62,6 +62,7 @@ func InstallNode(node state.Node, apiToken, apiHost, labels string) error { fmt.Printf("[%s] Running setup...\n", node.Name) cmd = exec.Command("bash", filepath.Join(instanceDir, "setup.sh"), "--batch", "--token", apiToken, "--cloud", cloudFromHost(apiHost), + "--custom-ngx-build", ) logFile, _ := os.Create(filepath.Join(instanceDir, "install.log")) diff --git a/internal/preflight/preflight.go b/internal/preflight/preflight.go index ec66dee..ca63a8a 100644 --- a/internal/preflight/preflight.go +++ b/internal/preflight/preflight.go @@ -88,7 +88,7 @@ func Run() Result { } // 6. Installer reachability - installerOk := shared.HTTPHead("https://storage.googleapis.com/meganode_storage/6.13/") + installerOk := shared.HTTPHead("https://storage.googleapis.com/meganode_storage/") r.Checks = append(r.Checks, Check{ Name: "installer_reachable", Passed: installerOk, Detail: "storage.googleapis.com",