diff options
author | Edward Crompton <edward.crompton@gmail.com> | 2016-01-04 15:02:24 +0000 |
---|---|---|
committer | Edward Crompton <edward.crompton@gmail.com> | 2016-01-04 15:02:24 +0000 |
commit | 6c096ec2b4a99b1c0a909a4df960c885e4fedfe5 (patch) | |
tree | bcd88401750915e55444b5df2f515592df2b28dd /console.php | |
parent | 61a7728096796e7137a21ad481cbba9b239df432 (diff) | |
download | nextcloud-server-6c096ec2b4a99b1c0a909a4df960c885e4fedfe5.tar.gz nextcloud-server-6c096ec2b4a99b1c0a909a4df960c885e4fedfe5.zip |
Removing the . from the end of the help response to match convention set by other messages
Diffstat (limited to 'console.php')
-rw-r--r-- | console.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console.php b/console.php index 779f9696d30..284d30ccadd 100644 --- a/console.php +++ b/console.php @@ -60,7 +60,7 @@ try { echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL; echo "Current user: " . $user['name'] . PHP_EOL; echo "Owner of config.php: " . $configUser['name'] . PHP_EOL; - echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)." . PHP_EOL; + echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL; exit(0); } } |