I'm facing some problem while building on travis my Symfony 3.2
project.
After downloading all dependencies it gives me the following error message:
Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache Could not open input file: app/console Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache
handling the symfony-scripts event terminated with an exception
And I get a RuntimeException:
[RuntimeException]
An error occurred when executing the "'cache:clear --no-warmup'" command:
Could not open input file: app/console
and the configuration:
{
"language": "php",
"php": "7.0",
"before_script": [
"composer install"
],
"global_env": "SOURCE_DIR=src VHOST_FILE=.travis.vhost",
"group": "stable",
"dist": "precise",
"os": "linux"
}
bin/console
instead ofapp/console
since Symfony 3.x? – Veve