Skip to content

Commit

Permalink
Actually create directories
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Feb 11, 2021
1 parent 0cd199d commit bdf5b0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion documentation/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def run_cmake_doxygen():
# Make sure the directory exists
cmake_dir = os.path.join(os.getcwd(), '_build/cmake-build')
xml_dir = os.path.join(cmake_dir, 'doxygen/xml')
os.makedirs('cmake-build', exist_ok=True)
os.makedirs(cmake_dir, exist_ok=True)
os.makedirs(xml_dir, exist_ok=True)

try:
retcode = subprocess.call(
Expand Down

0 comments on commit bdf5b0d

Please sign in to comment.