Skip to content

Commit

Permalink
Merge pull request #219 from sbspk/bug-215
Browse files Browse the repository at this point in the history
Fixes #215
  • Loading branch information
Subash committed Aug 9, 2013
2 parents 8ab23a1 + ef70f47 commit fdb5b8e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions application/app/js/app/services/fileTypes/sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ prepros.factory('sass', function (config, utils) {
args.push('--debug-info');
}

//No Colours for certain Shells
args.push('--no-color');

} else {

args = config.ruby.getGem('sass');
Expand Down Expand Up @@ -142,6 +145,9 @@ prepros.factory('sass', function (config, utils) {
args.push('--line-numbers');
}

//No Colours for certain Shells
args.push('--no-color');

//Make output dir if it doesn't exist
fs.mkdirsSync(path.dirname(file.output));

Expand Down

0 comments on commit fdb5b8e

Please sign in to comment.