Skip to content

Commit

Permalink
[Doc] Correctly clean the MATLAB docs
Browse files Browse the repository at this point in the history
The MATLAB docs files are no longer in the code-docs folder.
  • Loading branch information
bryanwweber committed Jun 6, 2020
1 parent e9ace83 commit ac55ea6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ if 'clean' in COMMAND_LINE_TARGETS:
removeFile('config.log')
removeDirectory('doc/sphinx/matlab/examples')
removeFile('doc/sphinx/matlab/examples.rst')
removeDirectory('doc/sphinx/matlab/code-docs')
for name in os.listdir('doc/sphinx/matlab/'):
if name.endswith('.rst') and name != 'index.rst':
removeFile('doc/sphinx/matlab/' + name)
removeDirectory('doc/sphinx/cython/examples')
removeFile('doc/sphinx/cython/examples.rst')
removeDirectory('interfaces/cython/Cantera.egg-info')
Expand Down

0 comments on commit ac55ea6

Please sign in to comment.