You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(install): macOS .app bundle when piped through curl|bash
Original script used `sudo` to write into /Applications, but curl|bash
has no TTY — sudo couldn't read a password and the .app bundle silently
failed to create. User ran the installer, daemora ran fine, but no app
icon ever appeared.
Two fixes layered:
1. osascript with administrator privileges shows a GUI password dialog
that works in non-TTY shells (same trick Homebrew/Anthropic/Cursor
installers use). User sees a real macOS auth prompt.
2. If they cancel or osascript isn't available, fall back to
~/Applications/Daemora.app. User-writable, no sudo, indexed by
Spotlight + Finder. Only downside: not in Launchpad (only
/Applications is). Better than no icon at all.
Either way the .app gets created — `mdimport` triggers Spotlight to
index it immediately so 'Daemora' is searchable right after install.
0 commit comments