1
0
forked from wrenn/wrenn

fix exec cwd and env propagation

This commit is contained in:
Tasnim Kabir Sadik
2026-05-15 15:06:32 +06:00
parent c08884fa2c
commit 239a642497
8 changed files with 186 additions and 118 deletions

View File

@ -222,6 +222,8 @@ message ExecRequest {
repeated string args = 3;
// Timeout for the command in seconds (default: 30).
int32 timeout_sec = 4;
map<string, string> envs = 5;
string cwd = 6;
}
message ExecResponse {
@ -282,6 +284,8 @@ message ExecStreamRequest {
string cmd = 2;
repeated string args = 3;
int32 timeout_sec = 4;
map<string, string> envs = 5;
string cwd = 6;
}
message ExecStreamResponse {