Skip to content

Commit

Permalink
Fix #2192 -- support --conf in auto
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Dec 22, 2015
1 parent a401e09 commit c02f64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/auto/__init__.py
Expand Up @@ -143,7 +143,7 @@ def _execute(self, options, args):

self.cmd_arguments = ['nikola', 'build']
if self.site.configuration_filename != 'conf.py':
self.cmd_arguments = ['--conf=' + self.site.configuration_filename] + self.cmd_arguments
self.cmd_arguments.append('--conf=' + self.site.configuration_filename)

# Run an initial build so we are up-to-date
subprocess.call(self.cmd_arguments)
Expand Down

0 comments on commit c02f64e

Please sign in to comment.