From a8c1641066865215c2ad30c52363b8f40b1d743f Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Tue, 22 Mar 2016 00:29:23 +0900 Subject: [PATCH] info: Show installation path --- framework/core/src/Debug/Console/InfoCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/core/src/Debug/Console/InfoCommand.php b/framework/core/src/Debug/Console/InfoCommand.php index deedc56cc..db94bef8d 100644 --- a/framework/core/src/Debug/Console/InfoCommand.php +++ b/framework/core/src/Debug/Console/InfoCommand.php @@ -66,5 +66,6 @@ class InfoCommand extends AbstractCommand } $this->info('Base URL: '.$this->config['url']); + $this->info('Installation path: '.getcwd()); } }