Multiple SCSS / SASS sites in multiple directories

I am considering installing SCSS on a platform that uses SVN with multiple sites in a team of eight.

Our site structure is currently as follows.

REPO > WEBSITE1 > CSS
REPO > WEBSITE2 > CSS
REPO > WEBSITE3 > CSS
REPO > WEBSITE4 > CSS

      

Is there a way to make Compass or SASS watch the entire repository (without having to browse / shutdown) each individual site using config.rb or any other method?

Thank you for your help!

+3


source to share


1 answer


#!/bin/bash
for i in repoa repob repoc repod
  do
    compass watch "$i/pathtoyourconfig.rb" &
done

      



+3


source







All Articles