mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
10 lines
254 B
Bash
Executable file
10 lines
254 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
imports=$(find src/static/themes -name '*.css'| awk -F"/" '{ printf "@import url('\''../%s/%s/%s'\'');\n", $3, $4, $5 }')
|
|
|
|
|
|
for css in build/static/css/*.css; do
|
|
printf '%s\n%s\n' "$imports" "$(cat "$css")" > "$css"
|
|
done
|