I'm having a strange issue with a Symfony 2 deployment to production.
After running:
php app/console assets:install --env=prod
php app/console assetic:dump --env=prod
A css file is generated in web/css, for example "53xyz.css".
However, the twig template is outputting the url "53xyz_part_1_style_1.css" which is causing a 404.
Same goes for other assets using the asset_url in a stylesheets or javascripts block.
Has anyone run into this before?