info('Adminer installing...'); // download adminer system('wget "http://www.adminer.org/latest.php" -O '.$this->argument('destination').'/index.php'); // check if nginx is ready and installed if (file_exists($this->argument('destination').'/index.php')) { $this->info('Adminer installing...Success! \o/'); } else { $this->error('Failed! Please check log-file!'); } } }