Skip to content

Commit cca2788

Browse files
committed
Fix copy target of jupyter notebooks for the website
1 parent 1edb005 commit cca2788

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

code/scripts/prepare_deployment.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ copy_examples() {
9393
mkdir -p "$target_srs_dir/PDF"
9494
mkdir -p "$target_srs_dir/HTML"
9595
mkdir -p "$target_srs_dir/mdBook"
96+
mkdir -p "$target_srs_dir/Jupyter"
9697
if [ -d "$example/SRS/PDF" ]; then
9798
cp "$example/SRS/PDF/"*.pdf "$target_srs_dir/PDF"
9899
fi
@@ -103,7 +104,7 @@ copy_examples() {
103104
cp -r "$example/SRS/mdBook/book/" "$target_srs_dir/mdBook"
104105
fi
105106
if [ -d "$example/SRS/Jupyter" ]; then
106-
cp -r "$example/SRS/Jupyter/*.html" "$target_srs_dir/Jupyter"
107+
cp -r "$example/SRS/Jupyter/"*.html "$target_srs_dir/Jupyter"
107108
fi
108109
if [ -d "$example/src" ]; then
109110
mkdir -p "$EXAMPLE_DEST$example_name/$DOX_DEST"

0 commit comments

Comments
 (0)