Created
February 13, 2011 18:03
-
-
Save founddrama/824902 to your computer and use it in GitHub Desktop.
Sometimes `sass --style compressed` is overkill; here's how to maximize what's built in without losing your important license comment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Initializing style.css with license text..." | |
touch style.css | |
cat _license.txt > style.css | |
echo "Compiling Sass to style.css..." | |
# note that omitting the [OUTPUT] param writes to stout | |
sass --style compressed src/scss/style.scss >> style.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
instead of /* [license] */ sorry