summaryrefslogtreecommitdiff
path: root/themes/build-themes.sh
blob: 8657b6910c00896cd57a5239d606c9cf89c3669e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

FILE_PATH="$(dirname "$0")"

for file in $(ls "${FILE_PATH}/"*.less); do
    filename="${file##*/}"
    themeName="${filename%.less}"

    if [[ "$filename" == "base.less" ]]; then
        continue;
    fi

    echo "Building ${themeName}"
    lessc "${file}" > "${FILE_PATH}/../public/css/${themeName}.css"
done