typer/scripts/netlify-docs.sh

8 lines
194 B
Bash
Raw Normal View History

2019-12-24 13:32:25 +01:00
#!/usr/bin/env bash
# Install Flit to be able to install all
2019-12-24 14:04:14 +01:00
python3 -m pip install flit
2019-12-24 13:32:25 +01:00
# Install with Flit
2019-12-24 14:04:14 +01:00
python3 -m flit install --deps develop
2019-12-24 13:32:25 +01:00
# Finally, run mkdocs
2019-12-24 14:04:14 +01:00
python3 -m mkdocs build