/** * Ensures that the path to Acquia DevDesktop is set correctly */ public function ensureDevdesktopPath() { $path = PathResolver::getDevdesktopPath(); while (!file_exists($path)) { $path = $this->ask('Path to DevDesktop'); if ($path == "") { $this->say('WARNING: Will use default binarys!'); $path = NULL; break; } } PathResolver::setDevdesktopPath($path); }