mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-13 15:46:22 +00:00
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
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user