packedRuleYaml property

String packedRuleYaml

name of the package batman.yaml file appropriate for the target platform.

Implementation

String get packedRuleYaml {
  late final String path;
  if (DockerShell.inDocker) {
    path = 'batman_docker.yaml';
  } else {
    path = 'batman_local.yaml';
  }
  return path;
}