diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2015-08-12 12:17:52 +0100 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2015-08-13 09:25:04 +0100 |
commit | 68afd4edf9aeea5dd57cfd754c0cbe56399c8fbd (patch) | |
tree | 173033e73a8ea2bc41073db15285e9e0e81d6334 /bin | |
parent | 6329d2b848c405e4e646a4111941e82fcb0f33cb (diff) |
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.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/make_css | 2 |
1 files changed, 1 insertions, 1 deletions
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 |