7 lines
216 B
Bash
Executable file
7 lines
216 B
Bash
Executable file
#!/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
|