fix: add ~/.bun/bin to additonalPaths for "unix-like paths"#331
Open
edheltzel wants to merge 2 commits intoRunMaestro:mainfrom
Open
fix: add ~/.bun/bin to additonalPaths for "unix-like paths"#331edheltzel wants to merge 2 commits intoRunMaestro:mainfrom
~/.bun/bin to additonalPaths for "unix-like paths"#331edheltzel wants to merge 2 commits intoRunMaestro:mainfrom
Conversation
Bun's default installer places the binary at ~/.bun/bin/, which was not included in buildExpandedPath(). This caused #!/usr/bin/env bun shebangs to fail with "env: bun: No such file or directory" when processes are spawned from the Electron GUI context, since GUI apps don't inherit shell profile PATH additions from ~/.zshenv or ~/.bashrc.
* upstream/main: (171 commits) ## CHANGES fix: create draft PR on Symphony contribution start to claim issues fix: resolve Document Graph missing connections for cross-directory wiki links ## CHANGES - Added session support for configurable file-tree auto-refresh interval ⏱️ - Improved empty-state UI: celebrate when no labeled issues remain ✅ - Clarified guidance text when issues exist: “Select an issue” prompt 🎵 fix: harden file explorer auto-refresh error handling and timer cleanup fix: resolve infinite re-render loop in QuickActionsModal ## CHANGES - Refreshed registry metadata with updated `lastUpdated` timestamp for 2026-02-14 ⏰ - Added <a href="https://github.com/pedramamini/Podsidian">Podsidian</a>: MCP podcast transcription-to-Obsidian Markdown workflow 🎙️ - Added <a href="https://github.com/pedramamini/RSSidian">RSSidian</a>: MCP RSS ingestion and summarization into Markdown notes 📰 - Added <a href="https://github.com/thedotmack/claude-mem">claude-mem</a>: Claude Code memory plugin capturing and reinjecting context 🧠 fix: Auto Run chart undercounted tasks by using agent invocations instead of checkboxes feat: make Symphony categories extensible via registry fix: make test shortcut assertions platform-agnostic fix: address PR RunMaestro#333 review feedback for Director's Notes feat: Symphony blocking labels and build tools warning fix: Wizard crash on Codex agents (exit code 2) from duplicate CLI args docs: sync release notes for v0.15.0-RC chore: migrate GitHub URLs from pedramamini to RunMaestro org fix: ToC overlay clicks not working for headings with special characters fix: prevent duplicate worktree UI entries from file watcher race condition fix: Auto Run stop targets correct session; consolidate context display logic fix: Auto Run Resume/Abort buttons not working when paused on error fix: Cmd+E markdown toggle blocked by modal layer guard ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bun's default installer places the binary at ~/.bun/bin/, which was not included in buildExpandedPath(). This caused #!/usr/bin/env bun shebangs to fail with "env: bun: No such file or directory" when processes are spawned from the Electron GUI context, since GUI apps don't inherit shell profile PATH additions from ~/.zshenv or ~/.bashrc.