vibeteam 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -79,13 +79,14 @@ const EXEC_PATH = [
|
|
|
79
79
|
'/usr/local/bin', // macOS Intel Homebrew / Linux local
|
|
80
80
|
process.env.PATH || '',
|
|
81
81
|
].join(':');
|
|
82
|
-
/**
|
|
82
|
+
/** PATH for tmux spawn - includes common locations plus original PATH */
|
|
83
83
|
const TMUX_SPAWN_PATH = [
|
|
84
84
|
`${HOME}/.local/bin`,
|
|
85
85
|
'/opt/homebrew/bin',
|
|
86
86
|
'/usr/local/bin',
|
|
87
87
|
'/usr/bin',
|
|
88
88
|
'/bin',
|
|
89
|
+
process.env.PATH || '',
|
|
89
90
|
].join(':');
|
|
90
91
|
/** Options for exec() with extended PATH */
|
|
91
92
|
const EXEC_OPTIONS = { env: { ...process.env, PATH: EXEC_PATH } };
|