From 68afd4edf9aeea5dd57cfd754c0cbe56399c8fbd Mon Sep 17 00:00:00 2001 From: Zarino Zappia Date: Wed, 12 Aug 2015 12:17:52 +0100 Subject: Follow symlinks during CSS compilation The fixmystreet-international installation instructions make use of symlinks in, among other places, `web/cobrands/`. This means that make_css needs to follow symlinks when looking for scss files to compile. --- bin/make_css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/make_css b/bin/make_css index 3a1fca1a7..715e0b0e2 100755 --- a/bin/make_css +++ b/bin/make_css @@ -20,7 +20,7 @@ fi DIRECTORY=$(cd "$DIR"/../web && pwd) -DIRS=${@:-`find $DIRECTORY -name "*.scss" -exec dirname {} \; | uniq`} +DIRS=${@:-`find -L $DIRECTORY -name "*.scss" -exec dirname {} \; | uniq`} for dir in $DIRS; do if [ -e "$dir/config.rb" ]; then -- cgit v1.2.3