From 04c774831c696d17572972fb1366c6c64b627085 Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 16 Apr 2014 22:08:03 -0400 Subject: [PATCH] Add exit instructions to ServerShell. --- src/Console/Command/ServerShell.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Console/Command/ServerShell.php b/src/Console/Command/ServerShell.php index a3f21319921..e60bc3ea722 100644 --- a/src/Console/Command/ServerShell.php +++ b/src/Console/Command/ServerShell.php @@ -1,7 +1,5 @@ _port == static::DEFAULT_PORT) ? '' : ':' . $this->_port; $this->out(__d('cake_console', 'built-in server is running in http://%s%s/', $this->_host, $port)); + $this->out(__d('cake_console', 'You can exit with CTRL-C')); system($command); }