Future<bool> runChecks() async { if (!await gitService.isGitInstalled()) { return false; } if (!await gitService.isGitRepository()) { return false; } return true; }