Skip to content
Snippets Groups Projects
Commit 46f8ab1b authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Add the creation of the docs directory in buildversion.py.

parent 53f395f0
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,10 @@ def epydoc():
The HTML files are located in static/plugin_dbui/docs/
"""
# create the directory
if not os.path.exists(HTMLDOC):
os.makedirs(HTMLDOC)
# clean the directory
for el in os.listdir(HTMLDOC):
os.remove(os.path.join(HTMLDOC, el))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment