-
Notifications
You must be signed in to change notification settings - Fork 555
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Error Output: Individual stylesheets must be in the sass directory. #697
Comments
I encountered the same problem. It seems to be linked to this :Compass/compass#1769 (comment) The comment selected points out a solution that Assetic:compassFilter cannot handle. |
Please check my fix at Compass/compass#1769 (comment). |
To fix it, simply change this line $pb->add('--sass-dir')->add('')->add('--css-dir')->add(''); to this: $pb->add('--sass-dir')->add($tempDir)->add('--css-dir')->add($tempDir); See also http://stackoverflow.com/questions/26084457/individual-stylesheets-must-be-in-the-sass-directory I hope this gets integrated and released soon. This change should also be backwards compatible. |
Any update on this? Still a problem in |
Had the same problem, @fritzmg . Your fix did the job. |
I had the same issue at Windows 7 but not on our Linux server |
After upgrading
Compass
to version 1.0.1, it throws an errorError Output: Individual stylesheets must be in the sass directory.
when I dophp app/console assetic:dump --watch --force
. How to fix it?The text was updated successfully, but these errors were encountered: