File configurationFile

Source

File get configurationFile {
  String path = values["config-path"];
  if (path_lib.isRelative(path)) {
    return fileInProjectDirectory(path);
  }

  return new File(path);
}