Browse Source

Removing the . from the end of the help response to match convention set by other messages

tags/v9.0beta1
Edward Crompton 8 years ago
parent
commit
6c096ec2b4
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      console.php

+ 1
- 1
console.php View File

@@ -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);
}
}

Loading…
Cancel
Save