BuildCommandRunResult

struct BuildCommandRunResult {
string[] stderr;
}

Members

Variables

executionMsecs
long executionMsecs;

time to execute the command. TODO: change to Duration after DMD v2.076

status
int status;

actual exit status

stdout
string[] stdout;

captured output

success
bool success;

convenient value which is true when exit status is zero.

Meta