From c7f622d3699b7f65ee75bcd5d409ad2027e9b6a4 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Fri, 15 Jan 2016 09:34:09 +0100 Subject: [PATCH] Update readme & fix console permission --- README.md | 7 +++---- bin/console | 0 phpunit.xml.dist | 14 +++++++------- src/Wallabag/CoreBundle/Command/InstallCommand.php | 3 +-- 4 files changed, 11 insertions(+), 13 deletions(-) mode change 100644 => 100755 bin/console diff --git a/README.md b/README.md index 6d545ff5..927f39a8 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,11 @@ If you don't have it yet, please [install composer](https://getcomposer.org/down ``` composer create-project wallabag/wallabag wallabag 2.0.0-alpha.1 -cd wallabag -php app/console wallabag:install -php app/console server:run +php bin/console wallabag:install +php bin/console server:run ``` ## License -Copyright © 2013-2015 Nicolas Lœuillet +Copyright © 2013-2016 Nicolas Lœuillet This work is free. You can redistribute it and/or modify it under the terms of the MIT License. See the COPYING file for more details. diff --git a/bin/console b/bin/console old mode 100644 new mode 100755 diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 0e8cc8eb..e68df9de 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -14,22 +14,22 @@ - ./src/Wallabag/*Bundle/Tests + src/Wallabag/*Bundle/Tests - + - ./src + src - ./vendor - ./src/Wallabag/*Bundle/Resources - ./src/Wallabag/*Bundle/Tests - ./src/Wallabag/*Bundle/DataFixtures + vendor + src/Wallabag/*Bundle/Resources + src/Wallabag/*Bundle/Tests + src/Wallabag/*Bundle/DataFixtures diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php index 941cb8cd..da099a19 100644 --- a/src/Wallabag/CoreBundle/Command/InstallCommand.php +++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php @@ -12,7 +12,6 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ConfirmationQuestion; use Symfony\Component\Console\Question\Question; use Wallabag\CoreBundle\Entity\Config; -use Wallabag\UserBundle\Entity\User; class InstallCommand extends ContainerAwareCommand { @@ -56,7 +55,7 @@ class InstallCommand extends ContainerAwareCommand ; $output->writeln('Wallabag has been successfully installed.'); - $output->writeln('Just execute `php app/console server:run` for using wallabag: http://localhost:8000'); + $output->writeln('Just execute `php bin/console server:run` for using wallabag: http://localhost:8000'); } protected function checkRequirements() -- 2.41.0