Skip to content

Commit

Permalink
Fixes #215
Browse files Browse the repository at this point in the history
  • Loading branch information
mattclements committed Aug 8, 2013
1 parent 8ab23a1 commit ef70f47
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 ef70f47

Please sign in to comment.