From aad5bc16fddf208c4aa232f4d060e11640a69ec2 Mon Sep 17 00:00:00 2001 From: shivammittal274 <56757235+shivammittal274@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:17:13 +0530 Subject: [PATCH] Feat/cli launch ready v2 (#599) * test: temporarily allow release workflow on any branch * fix(cli): restore main-only guard, remove goreleaser dependency Replaces GoReleaser (Pro-only monorepo feature) with plain go build. Tested: RC release created successfully on branch with all 6 binaries. * fix(cli): remove -quiet from hdiutil so mount point is detected --- packages/browseros-agent/apps/cli/cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/browseros-agent/apps/cli/cmd/install.go b/packages/browseros-agent/apps/cli/cmd/install.go index 2f4815087..dbf95a805 100644 --- a/packages/browseros-agent/apps/cli/cmd/install.go +++ b/packages/browseros-agent/apps/cli/cmd/install.go @@ -148,7 +148,7 @@ func runPostInstall(path string, deb bool, dim *color.Color) { // installMacOS mounts the DMG and copies BrowserOS.app to /Applications. func installMacOS(dmgPath string, dim *color.Color) { fmt.Println("Mounting disk image...") - mountOut, err := exec.Command("hdiutil", "attach", dmgPath, "-nobrowse", "-quiet").Output() + mountOut, err := exec.Command("hdiutil", "attach", dmgPath, "-nobrowse").Output() if err != nil { dim.Println("Could not mount DMG automatically.") dim.Printf(" Open it manually: open %s\n", dmgPath)