Builder.watch: only warn for Bash on Windows, still try watching.
This commit is contained in:
parent
d71dff74ae
commit
df45f26187
|
@ -71,12 +71,17 @@ module Jekyll
|
||||||
#
|
#
|
||||||
# Returns nothing.
|
# Returns nothing.
|
||||||
def watch(site, options)
|
def watch(site, options)
|
||||||
|
# Warn Windows users that they might need to upgrade.
|
||||||
if Utils::Platforms.bash_on_windows?
|
if Utils::Platforms.bash_on_windows?
|
||||||
Jekyll.logger.warn "", "--watch arg is unsupported in Bash on Windows. "
|
Jekyll.logger.warn "",
|
||||||
Jekyll.logger.warn "", "Please see: https://github.com/Microsoft/BashOnWindows/issues/216"
|
"Auto-regeneration may not work on some Windows versions."
|
||||||
Jekyll.logger.warn "", "If iNotify is fixed, please file a ticket."
|
Jekyll.logger.warn "",
|
||||||
|
"Please see: https://github.com/Microsoft/BashOnWindows/issues/216"
|
||||||
|
Jekyll.logger.warn "",
|
||||||
|
"If it does not work, please upgrade Bash on Windows or "\
|
||||||
|
"run Jekyll with --no-watch."
|
||||||
|
end
|
||||||
|
|
||||||
else
|
|
||||||
External.require_with_graceful_fail "jekyll-watch"
|
External.require_with_graceful_fail "jekyll-watch"
|
||||||
watch_method = Jekyll::Watcher.method(:watch)
|
watch_method = Jekyll::Watcher.method(:watch)
|
||||||
if watch_method.parameters.size == 1
|
if watch_method.parameters.size == 1
|
||||||
|
@ -89,7 +94,6 @@ module Jekyll
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
end # end of class << self
|
end # end of class << self
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue