ReleasePackerProcessCommand.inline constructor

ReleasePackerProcessCommand.inline(
  1. String fullCommand, {
  2. String? stdoutFilePath,
  3. String? stderrFilePath,
})

Implementation

factory ReleasePackerProcessCommand.inline(
  String fullCommand, {
  String? stdoutFilePath,
  String? stderrFilePath,
}) {
  var list = ReleasePackerCommand.parseInlineCommand(fullCommand);
  var command = list.removeAt(0);
  return ReleasePackerProcessCommand(
    command,
    list,
    stdoutFilePath,
    stderrFilePath,
  );
}