mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
9 lines
261 B
Bash
Executable file
9 lines
261 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
imports=$(find src/static/themes/ -name *.css| sed "s/^src\/static\///" | sed "s/^.*$/@import url\('..\/\0'\);/")
|
|
|
|
shopt -s globstar
|
|
|
|
for css in $(ls build/static/css/**/*.css); do
|
|
printf '%s\n%s\n' "$imports" "$(cat $css)" > $css
|
|
done
|