Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change types of repeated args and envs fields #1063

Merged
merged 3 commits into from
Mar 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions Source/common/santa.proto
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

// Important: This schema is currently in BETA

syntax = "proto3";
Expand Down Expand Up @@ -231,10 +232,10 @@ message Execution {
optional FileInfo working_directory = 4;

// List of process arguments
repeated string args = 5;
repeated bytes args = 5;

// List of environment variables
repeated string envs = 6;
repeated bytes envs = 6;

// List of file descriptors
repeated FileDescriptor fds = 7;
Expand Down