Skip to content

Commit ef3df5c

Browse files
Thierry Chappuisfreezed
authored andcommitted
Removed pipenv run calls in tasks.py
1 parent ddccbab commit ef3df5c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tasks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,28 +27,28 @@ def build(c):
2727
"""Builds the local Pelican blog."""
2828
check_theme_and_plugins(c)
2929
c.run('echo "Publishing your Pelican website"')
30-
c.run(f'pipenv run pelican content -s pelicanconf.py -t {THEME}')
30+
c.run(f'pelican content -s pelicanconf.py -t {THEME}')
3131

3232
@task
3333
def publish(c):
3434
"""Builds the Pelican blog with deployment settings."""
3535
check_theme_and_plugins(c)
3636
c.run('echo "Building your Pelican website"')
37-
c.run(f'pipenv run pelican content -s publishconf.py -t {THEME}')
37+
c.run(f'pelican content -s publishconf.py -t {THEME}')
3838

3939
@task
4040
def autoreload(c):
4141
"""Starts the autoreload server to help during writing of blog articles."""
4242
c.run('echo "Running autoreload server. Press CTRL+C to stop"')
43-
c.run(f'pipenv run pelican -r content -s pelicanconf.py -t {THEME}')
43+
c.run(f'pelican -r content -s pelicanconf.py -t {THEME}')
4444

4545
@task
4646
def runserver(c):
4747
"""Starts the dev server to visualize the articles locally in a web browser
4848
at url http://localhost:8000.
4949
"""
5050
c.run('echo "Running development server. Press CTRL+C to stop"')
51-
c.run(f'pipenv run python -m http.server -d output')
51+
c.run(f'python -m http.server -d output')
5252

5353
@task
5454
def revert(c):

0 commit comments

Comments
 (0)