We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950b87a commit 18ac1dbCopy full SHA for 18ac1db
1 file changed
tasks.py
@@ -7,13 +7,13 @@
7
def build(c):
8
"""Builds the local Pelican blog."""
9
c.run('echo "Publishing your Pelican website"')
10
- c.run(f'pelican content -s pelicanconf.py')
+ c.run(f'pelican content -s pelicanconf.py --fatal=warnings')
11
12
@task
13
def publish(c):
14
"""Builds the Pelican blog with deployment settings."""
15
c.run('echo "Building your Pelican website"')
16
- c.run(f'pelican content -s publishconf.py')
+ c.run(f'pelican content -s publishconf.py --fatal=warnings')
17
18
19
def autoreload(c):
0 commit comments