8 lines
187 B
Python
8 lines
187 B
Python
|
import shutil
|
||
|
import os.path
|
||
|
|
||
|
|
||
|
def copy_doxygen(*args, **kwargs):
|
||
|
shutil.copytree('../html', os.path.join(kwargs['config']['site_dir'], 'doxygen'))
|
||
|
print('Copy Doxygen complete')
|