.sass-cache doesn't *always* land in options['source'] (#6500)
Merge pull request 6500
This commit is contained in:
parent
2023b44f2e
commit
f72e2ccaa6
|
@ -22,7 +22,7 @@ module Jekyll
|
||||||
options = configuration_from_options(options)
|
options = configuration_from_options(options)
|
||||||
destination = options["destination"]
|
destination = options["destination"]
|
||||||
metadata_file = File.join(options["source"], ".jekyll-metadata")
|
metadata_file = File.join(options["source"], ".jekyll-metadata")
|
||||||
sass_cache = File.join(options["source"], ".sass-cache")
|
sass_cache = ".sass-cache"
|
||||||
|
|
||||||
remove(destination, :checker_func => :directory?)
|
remove(destination, :checker_func => :directory?)
|
||||||
remove(metadata_file, :checker_func => :file?)
|
remove(metadata_file, :checker_func => :file?)
|
||||||
|
|
Loading…
Reference in New Issue