I'm installing compass via a provisioning tool on my vagrant box and by doing so I create the following files
Though, I have no use for these files and they remain empty it's becoming annoying having to remove them everytime we provision our vagrant machine.
Is there any way to install compass without creating the default scss files?
echo "------------------------------------------------------------"
echo "Start up Compass Compiling"
echo "------------------------------------------------------------"
sudo compass init
sudo compass compile
My provisioner script
The command line option you're looking for is --bare
, though it only works with the create
option:
compass create [optional directory name] --bare