URI: 
       resources: Update Dart Sass error message - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 57165d44ede02da430d444b989a19100d1ae004d
   DIR parent 7ee36b3718790f1dc4a2722f925acc6e3fd3caea
  HTML Author: Joe Mooring <joe.mooring@veriphor.com>
       Date:   Thu, 13 Jun 2024 06:11:39 -0700
       
       resources: Update Dart Sass error message
       
       Diffstat:
         M resources/resource_transformers/to… |       2 +-
         M resources/transform.go              |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/resources/resource_transformers/tocss/dartsass/transform.go b/resources/resource_transformers/tocss/dartsass/transform.go
       @@ -39,7 +39,7 @@ import (
                "github.com/bep/godartsass/v2"
        )
        
       -// Supports returns whether dart-sass-embedded is found in $PATH.
       +// Supports returns whether sass, dart-sass, or dart-sass-embedded is found in $PATH.
        func Supports() bool {
                if htesting.SupportsAll() {
                        return true
   DIR diff --git a/resources/transform.go b/resources/transform.go
       @@ -493,7 +493,7 @@ func (r *resourceAdapter) transform(key string, publish, setContent bool) (*reso
                                        } else if tr.Key().Name == "tocss" {
                                                errMsg = ". Check your Hugo installation; you need the extended version to build SCSS/SASS with transpiler set to 'libsass'."
                                        } else if tr.Key().Name == "tocss-dart" {
       -                                        errMsg = ". You need dart-sass-embedded in your system $PATH."
       +                                        errMsg = ". You need to install Dart Sass, see https://gohugo.io/functions/resources/tocss/#dart-sass"
                                        } else if tr.Key().Name == "babel" {
                                                errMsg = ". You need to install Babel, see https://gohugo.io/hugo-pipes/babel/"
                                        }