mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-17 19:03:46 +00:00
10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
echo "Compiling all LESS files to CSS"
|
|
for file in src/**/*.less
|
|
do
|
|
FROM=$file
|
|
TO=${file/.*/.css}
|
|
echo "$FROM --> $TO"
|
|
node_modules/less/bin/lessc "$FROM" "$TO"
|
|
done
|