Fixes for doc building

- Separate doc build from doc requirements
- Fix command which doesn't work properly on *nix
This commit is contained in:
Oliver Walters 2019-09-01 21:46:08 +10:00
parent 8f340df41e
commit 32538c8c3d

View File

@ -44,12 +44,14 @@ coverage:
coverage run InvenTree/manage.py test build company part stock order InvenTree
coverage html
documentation:
docreqs:
pip3 install -U -r docs/requirements.txt
cd docs & make html
documentation:
cd docs && make html
backup:
python3 InvenTree/manage.py dbbackup
python3 InvenTree/manage.py mediabackup
.PHONY: clean migrate requirements setup superuser install mysql style test coverage documentation backup
.PHONY: clean migrate requirements setup superuser install mysql style test coverage docreqs documentation backup