mirror of
https://github.com/nasa/fprime.git
synced 2025-12-16 00:46:54 -06:00
7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# A quick file for generating docs
|
|
DIRECTORY="../../../docs/UsersGuide/api/python/fprime/html"
|
|
mkdir -p "${DIRECTORY}"
|
|
sphinx-build . "${DIRECTORY}"
|