Skip to content

Instantly share code, notes, and snippets.

@pkyeck
Created June 11, 2013 14:11
Show Gist options
  • Save pkyeck/5757161 to your computer and use it in GitHub Desktop.
Save pkyeck/5757161 to your computer and use it in GitHub Desktop.
clickable "sass watch" command
#!/bin/bash
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
sass --watch $DIR/path/to/dir/scss/style.scss:$DIR/path/to/dir/css/style.css --style compressed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment