File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 3333
3434# Install the requirements
3535task ('python:venv:requirements ' , static function () {
36- run ('. .venv/bin/activate && pip install -r requirements/base.txt ' );
36+ run ('./ .venv/bin/pip install -r requirements/base.txt ' );
3737});
3838
3939task ('python:generate_redirects ' , static function () {
4040 run ('mkdir -p etc/nginx ' );
41- run ('. .venv/bin/activate && bin/generate_nginx_redirects > etc/nginx/server.redirects.conf ' );
41+ run ('./ .venv/bin/python bin/generate_nginx_redirects > etc/nginx/server.redirects.conf ' );
4242});
4343
44- # Build the documentation
4544task ('python:build_documentation ' , static function () {
46- run ('. .venv/bin/activate && bin/build_docs ' );
45+ run ('./ .venv/bin/python bin/build_docs ' );
4746 run ('ln -sf docs/_build/html pub ' );
4847});
4948
You can’t perform that action at this time.
0 commit comments