Skip to content

Commit b69ab7b

Browse files
committed
include _static dir in build
1 parent bb7d151 commit b69ab7b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

deployment/installtutorials.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ def process_repo(repo, destination_directory):
6565
f"{repo}/{tname}.html",
6666
destination_directory,
6767
)
68+
shutil.copytree(
69+
f"{repo}/_static",
70+
f"{destination_directory}/_static",
71+
dirs_exist_ok=True,
72+
)
6873
if len(tutorials) > 1:
6974
index_files = glob.glob(f"{repo}/index-*.html")
7075
if index_files:

0 commit comments

Comments
 (0)