@brierb/brier-cli 0.0.8 → 0.0.10
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.
- package/dist/daemon/TaskExecutor.js +3 -1
- package/dist/index.js +0 -0
- package/package.json +1 -1
|
@@ -76,7 +76,9 @@ export const createTaskExecutor = (callbacks) => {
|
|
|
76
76
|
child = spawn(cmd, args, {
|
|
77
77
|
cwd: task.cwd,
|
|
78
78
|
env: childEnv,
|
|
79
|
-
|
|
79
|
+
// stdin 置 ignore:任务输入全部来自 prompt/command 参数,runtime 无交互输入。
|
|
80
|
+
// 若用 pipe 且不关闭,TUI 类 runtime(opencode 等)会因 stdin 永不 EOF 而挂起不执行。
|
|
81
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
80
82
|
});
|
|
81
83
|
}
|
|
82
84
|
catch (err) {
|
package/dist/index.js
CHANGED
|
File without changes
|