diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-09-15 17:10:26 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-09-15 17:10:26 +0100 |
commit | 295078af6cc34623473e183cda8535a7c601d126 (patch) | |
tree | f8b28eea500e8c983f088378a256d09cabffd590 /bin | |
parent | 066441af5655d07e943f7361cdea72011383dde3 (diff) |
Allow multiple arguments to make_css.
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 c48dda4d6..4465f1f9b 100755 --- a/bin/make_css +++ b/bin/make_css @@ -13,7 +13,7 @@ DIRECTORY=$(cd `dirname $0`/../web && pwd) -DIRS=${1:-`find $DIRECTORY -name "*.scss" -exec dirname {} \; | uniq`} +DIRS=${@:-`find $DIRECTORY -name "*.scss" -exec dirname {} \; | uniq`} for dir in $DIRS; do if [ -e "$dir/config.rb" ]; then |