Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRealRancor <fisch.666@gmx.de>2016-10-15 14:22:25 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-10-24 17:12:17 +0300
commit14b1d946a8fcd044ab65f784fe40ebf7f3954855 (patch)
tree70fcae2c3e9f122d0a9f533701beb2f1a3f5814e /console.php
parent729c06548fbfe035c14dae68c4b09494b292d217 (diff)
Remove checks whether OC is running on Windows pt. 2
Diffstat (limited to 'console.php')
-rw-r--r--console.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/console.php b/console.php
index c9a9a49c4e9..939cd43d617 100644
--- a/console.php
+++ b/console.php
@@ -67,7 +67,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(1);
}