Creates a step that executes a process on the host system.
argv is one or more command line arguments passed to the executed
process. The first element is the name of the executable to run. More
command line arguments can be added with methods of Step.Run, such as:
Step.Run.addArgsStep.Run.addArtifactArgStep.Run.addFileArgStep.Run.addOutputFileArgThis function introduces a system dependency, compromising reproducibility and making it more difficult to set up one's computer in order to build the project from source.
See also:
addRunArtifactaddRunFilepub fn addSystemCommand(b: *Build, argv: []const []const u8) *Step.Run
pub fn addSystemCommand(b: *Build, argv: []const []const u8) *Step.Run {
assert(argv.len >= 1);
const run_step = Step.Run.create(b, b.fmt("run {s}", .{argv[0]}));
run_step.addArgs(argv);
return run_step;
}