forked from wrenn/wrenn
fix exec cwd and env propagation
This commit is contained in:
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user