Skip to content

Instantly share code, notes, and snippets.

@syphoxy
Created July 8, 2014 19:20
Show Gist options
  • Save syphoxy/dab74c83a154eaea85fc to your computer and use it in GitHub Desktop.
Save syphoxy/dab74c83a154eaea85fc to your computer and use it in GitHub Desktop.
function scss-compile {
scss --compass -q \
"skin/frontend/enterprise/$1/scss/$1.scss" \
"skin/frontend/enterprise/$1/css/$1.css" \
&& echo "Compile succeeded!" \
|| echo "Compile failed!"
}
function scss-compile-debug {
scss --compass -g -l -t expanded \
"skin/frontend/enterprise/$1/scss/$1.scss" \
"skin/frontend/enterprise/$1/css/$1.css" \
&& echo "Compile succeeded!" \
|| echo "Compile failed!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment