8 lines
216 B
Bash
8 lines
216 B
Bash
|
#!/usr/bin/env bash
|
||
|
# This script's sole purpose is to combine
|
||
|
# 'theme.source.css' and 'theme.overlay.css'
|
||
|
# and create 'theme.css'.
|
||
|
rm -rf theme.css
|
||
|
cp theme.source.css theme.css
|
||
|
cat theme.overlay.css >> theme.css
|