diff --git a/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java b/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java index 69bd89283e4c..0a97f2223d5f 100644 --- a/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java +++ b/ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassCli.java @@ -51,9 +51,10 @@ public abstract class SassCli { // #247890 /** - * System property to be set to "true" if libsass should be used. + * System property to be set to "false" if libsass 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