Skip to content

Commit

Permalink
Merge pull request #3373 from t-oster/feature-sass-default
Browse files Browse the repository at this point in the history
Change nb.sass.libsass to TRUE, to fix broken SASS
  • Loading branch information
matthiasblaesing committed Dec 16, 2021
2 parents de3c190 + baaefd5 commit 2388352
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -51,9 +51,10 @@ public abstract class SassCli {

// #247890
/**
* System property to be set to "true" if <tt>libsass</tt> should be used.
* System property to be set to "false" if <tt>libsass</tt> should be not be used
* for legacy RubySass implementation (https://github.com/apache/netbeans/pull/1234)
*/
private static final boolean USE_LIBSASS = Boolean.getBoolean("nb.sass.libsass"); // NOI18N
private static final boolean USE_LIBSASS = Boolean.parseBoolean(System.getProperty("nb.sass.libsass", "true")); // NOI18N

// version of the compiler set in ide options
@NullAllowed
Expand Down

0 comments on commit 2388352

Please sign in to comment.