I\'m using Sass 3.1.10 with Compass 0.11.5. I need to compile my compass project into many diffrent locations (css_dir) due some structural reasons. Currently I compile all
here is a solution with a ruby script https://stackoverflow.com/a/39635064/6440953
I wrote a simple shell script to compile to a given path:
echo "* Compiling all CSS"
echo "***** START";
cd /mainworkspace/www/
echo "***** compiling into skin1";
compass compile --time --css-dir=skin1/main/css --output-style compressed --force;
echo "***** compiling into skin2";
compass compile --time --css-dir=skin2/main/css --output-style compressed --force;
echo "***** compiling into uc skin";
compass compile --time --css-dir=uc/main/css --output-style compressed --force;
echo "***** END";
update: added some params for production. Here you can find many other optional params: http://compass-style.org/help/documentation/configuration-reference/