run method

Future<void> run({
  1. required String dirPath,
  2. required FarConfig farConfig,
})

Implementation

Future<void> run({required String dirPath, required FarConfig farConfig}) async {
  currentDirPath = dirPath;
  config = farConfig;
  if (config.enable == false) {
    logSkipping("$platform - $targetName settings enable is false");
    return;
  }

  renamePlist();
  await renameConfigsAppInfoValues();

  log("$platform $targetName, name update completed. ✅");
}