shellArgs property

List<String>? get shellArgs

The arguments to be passed to the shell executable used to run the task. Most shells require special arguments to execute a command. For example bash requires the -c argument to execute a command, PowerShell requires -Command and cmd requires both /d and /c.

Implementation

_i2.List<_i2.String>? get shellArgs => (_i5.getProperty(
      this,
      'shellArgs',
    ) as _i2.List?)
        ?.cast();
set shellArgs (List<String>? value)

Implementation

set shellArgs(_i2.List<_i2.String>? value) {
  _i5.setProperty(
    this,
    'shellArgs',
    value ?? _i6.undefined,
  );
}