path method

  1. @cliCommand
Future<void> path()

Show configuration file path

Implementation

@cliCommand
Future<void> path() async {
  print('Configuration path: $configPath');
  final exists = File(configPath).existsSync();
  print('Exists: ${exists ? 'Yes' : 'No'}');

  if (!exists) {
    info("Run 'claudio config init' to create configuration");
  }
}