Use UDZO DMG via hdiutil, store cores under Application Support, and match new naiveproxy mac asset names. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
228 B
Go
17 lines
228 B
Go
//go:build darwin
|
|
|
|
package config
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func platformNavisDir() (string, bool) {
|
|
base, err := os.UserConfigDir()
|
|
if err != nil {
|
|
return "", false
|
|
}
|
|
return filepath.Join(base, "Navis"), true
|
|
}
|