pubExeName property

String pubExeName

platform specific name of the 'pub' executable

Implementation

static String get pubExeName {
  if (core.Settings().isWindows) {
    return 'pub.bat';
  } else {
    return 'pub';
  }
}