Skip to content

Commit

Permalink
[docs] fix find complaint in example gathering script
Browse files Browse the repository at this point in the history
  • Loading branch information
shelhamer committed Aug 8, 2014
1 parent c9fd660 commit 70a6b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gather_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ for README_FILENAME in $(find examples -iname "readme.md"); do
done

# Gather docs from examples/*.ipynb and add YAML front-matter.
for NOTEBOOK_FILENAME in $(find examples -d 1 -iname "*.ipynb"); do
for NOTEBOOK_FILENAME in $(find examples -depth -iname "*.ipynb"); do
DOCS_FILENAME=$GATHERED_DIR/$NOTEBOOK_FILENAME
mkdir -p `dirname $DOCS_FILENAME`
python scripts/copy_notebook.py $NOTEBOOK_FILENAME $DOCS_FILENAME
Expand Down

0 comments on commit 70a6b0b

Please sign in to comment.