Skip to content

Commit

Permalink
Fix passing include paths to Sass.jl (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi authored Feb 17, 2020
1 parent a1200c0 commit c6a6900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Themes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function compile(src, dst=nothing)
s = (endswith(src, ".scss") || endswith(src, ".sass")) ? first(splitext(src)) : src
dst = "$(s).css"
end
Sass.compile_file(src, dst; include_paths=HTMLWriter.ASSETS_SASS)
Sass.compile_file(src, dst; include_path=HTMLWriter.ASSETS_SASS)
end

"""
Expand Down

0 comments on commit c6a6900

Please sign in to comment.