getYamlPath method

Future<String> getYamlPath()

Implementation

Future<String> getYamlPath() async {
  String yamlPath = localPath;
  var exists = await Directory(localPath).exists();
  if (exists) {
    yamlPath = localPath;
  } else {
    // await GitProcess.run(
    //   "clone",
    //   [remoteUrl],
    //   workingDirectory: ".",
    //   runInShell: true,
    // );
    // yamlPath = localPath;
  }
  return yamlPath;
}