I am using Assetic within a twig template to specify 2 JS files to utilize from my bundle
{
% javascripts
'@JiraExtendedReportsBundle/Resources/public/js/jquery-2.0.3.min.js'
'@JiraExtendedReportsBundle/Resources/public/js/jquery.jqplot.min.js'
%
}
When running assetic:dump
and then assets:install
, it creates the two files (without errors), but the second one is empty, even though it has contents within my bundle.
I've ensured that I have write access to web/bundles.
I've tried the --symlink
option, which errors out.
What steps can I take to debug/fix this?
Update: I just looked into web/bundles/jiraextendedreports/js and it's not creating an empty file for the second file, it's not creating a file at all. I've tried downgrading to symfony 2.3.3 and 2.3.2 (from 2.3.6) with no change - I got the idea from this thread: https://github.com/kriswallsmith/assetic/issues/496, but it does not seem to apply to me