Skip to content

Commit

Permalink
Fix #3119
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Jul 12, 2018
1 parent 0678cfc commit dd9a710
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -12,6 +12,7 @@ Features
Bugfixes
--------

* Watch correct output folder in ``nikola auto`` (Issue #3119)
* Fix post fragment dependencies when posts are only available in a
non-default language (Issue #3112)
* Implement ``MARKDOWN_EXTENSION_CONFIGS`` properly (Issue #2970)
Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/command/auto/__init__.py
Expand Up @@ -201,7 +201,7 @@ def _execute(self, options, args):
self.wd_observer = Observer()
# Watch output folders and trigger reloads
if self.has_server:
self.wd_observer.schedule(NikolaEventHandler(self.reload_page, loop), 'output/', recursive=True)
self.wd_observer.schedule(NikolaEventHandler(self.reload_page, loop), out_folder, recursive=True)

# Watch input folders and trigger rebuilds
for p in watched:
Expand Down

0 comments on commit dd9a710

Please sign in to comment.