File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
3333def 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
4040def 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
4646def 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
5454def revert (c ):
You can’t perform that action at this time.
0 commit comments