Skip to content

Commit

Permalink
pass precision to sass compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenkopp committed Oct 3, 2014
1 parent e680f66 commit 54f283d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SassyStudio.2012/Integration/SassGem/SassDocumentCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ private string GetSassArguments(FileInfo input, FileInfo output)
if (Options.GenerateSourceMaps)
builder.Append("--sourcemap ");

builder.Append("--precision ").Append(Options.Precision).Append(" ");

return builder
.Append(@"""").Append(input.FullName).Append(@"""").Append(" ")
.Append(@"""").Append(output.FullName).Append(@"""")
Expand Down

0 comments on commit 54f283d

Please sign in to comment.