RunArgs constructor
const
RunArgs({})
Creates a new RunArgs.
addPreviousOutputInEnv If the previous command's stdout and stderr (as generated by the prior create/update) is
archivePaths A list of path globs to return as a single archive asset after the command completes.
assetPaths A list of path globs to read after the command completes.
command The command to run.
dir The directory from which to run the command from. If dir does not exist, then
environment Additional environment variables available to the command's process.
interpreter The program and arguments to run the command.
logging If the command's stdout and stderr should be logged. This doesn't affect the capturing of
stdin Pass a string to the command's process as standard in
Implementation
const RunArgs({
this.addPreviousOutputInEnv,
this.archivePaths,
this.assetPaths,
required this.command,
this.dir,
this.environment,
this.interpreter,
this.logging,
this.stdin,
});