Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
add so extension when copying files
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Aug 20, 2017
1 parent a38832a commit f92ac5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyquickhelper/helpgen/utils_sphinx_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def copy_source_files(input, output, fmod=lambda v, filename: v,
if remove:
remove_folder(output, False, raise_exception=False)

deffilter = "(.+[.]py$)|(.+[.]pyd$)|(.+[.]cpp$)|(.+[.]h$)|(.+[.]dll$)|(.+[.]yml$)|(.+[.]o$)|(.+[.]def$)|(.+[.]exe$)|(.+[.]config$)"
deffilter = "(.+[.]py$)|(.+[.]pyd$)|(.+[.]cpp$)|(.+[.]h$)|(.+[.]dll$)|(.+[.]so$)|(.+[.]yml$)|(.+[.]o$)|(.+[.]def$)|(.+[.]exe$)|(.+[.]config$)"
if copy_add_ext is not None:
res = ["(.+[.]%s$)" % e for e in copy_add_ext]
deffilter += "|" + "|".join(res)
Expand Down

0 comments on commit f92ac5d

Please sign in to comment.