Skip to content

Commit

Permalink
Fix relative import issue in libsass/dart sass
Browse files Browse the repository at this point in the history
Fixes #12094
  • Loading branch information
bep committed Feb 21, 2024
1 parent fd0185a commit cf7023c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions hugolib/config_test.go
Expand Up @@ -854,6 +854,7 @@ Home.
}

func TestConfigParamSetOnLanguageLevel(t *testing.T) {
t.Skip("this has correctly started to fail now.")
t.Parallel()

files := `
Expand Down
2 changes: 1 addition & 1 deletion resources/transform.go
Expand Up @@ -446,7 +446,7 @@ func (r *resourceAdapter) transform(key string, publish, setContent bool) (*reso
tctx.To = b1

tctx.InPath = r.target.TargetPath()
tctx.SourcePath = tctx.InPath
tctx.SourcePath = strings.TrimPrefix(tctx.InPath, "/")

counter := 0
writeToFileCache := false
Expand Down

0 comments on commit cf7023c

Please sign in to comment.