We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1edb005 commit cca2788Copy full SHA for cca2788
code/scripts/prepare_deployment.sh
@@ -93,6 +93,7 @@ copy_examples() {
93
mkdir -p "$target_srs_dir/PDF"
94
mkdir -p "$target_srs_dir/HTML"
95
mkdir -p "$target_srs_dir/mdBook"
96
+ mkdir -p "$target_srs_dir/Jupyter"
97
if [ -d "$example/SRS/PDF" ]; then
98
cp "$example/SRS/PDF/"*.pdf "$target_srs_dir/PDF"
99
fi
@@ -103,7 +104,7 @@ copy_examples() {
103
104
cp -r "$example/SRS/mdBook/book/" "$target_srs_dir/mdBook"
105
106
if [ -d "$example/SRS/Jupyter" ]; then
- cp -r "$example/SRS/Jupyter/*.html" "$target_srs_dir/Jupyter"
107
+ cp -r "$example/SRS/Jupyter/"*.html "$target_srs_dir/Jupyter"
108
109
if [ -d "$example/src" ]; then
110
mkdir -p "$EXAMPLE_DEST$example_name/$DOX_DEST"
0 commit comments