Fix PHP cannot take a shell script

Fix part of https://github.com/friendica/friendica/issues/4665
`php [shell file]` does not work, so use `php [php file]` instead.
`php bin/console.php` is more robust than e.g. `bin/console` which does
not work on Windows, or *nix systems without Bash
This commit is contained in:
Alexandre Alapetite 2018-03-24 12:47:40 +01:00
parent ed93fce743
commit e64196c7b3
6 changed files with 12 additions and 12 deletions

View file

@ -70,7 +70,7 @@ Don't hesitate to ask us in case of doubt.
3. Check your code for typos.
There is a console command called *typo* for this.
$> php bin/console typo
$> php bin/console.php typo
Check out how to work with [our Vagrant](help/Vagrant) to save a lot of setup time!