Skip to content

Commit e7340e0

Browse files
committed
fixed examples path issue for excluded notebooks
1 parent ef17960 commit e7340e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/utilities/run_examples.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ notebooks=()
3232
runtimes=()
3333

3434
# Loop over all notebooks in the examples directory.
35-
find "examples/" -name "*.ipynb" -print0 |
35+
find "examples" -name "*.ipynb" -print0 |
3636
while IFS= read -r -d "" notebook; do
3737
# Skip notebooks in the excluded list.
3838
if printf "%s\0" "${excluded[@]}" | grep -Fxqz -- "$notebook"; then

0 commit comments

Comments
 (0)