From 70a6b0b71d2ec894689c85291bae5e64d44b0584 Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Fri, 8 Aug 2014 12:01:39 -0700 Subject: [PATCH] [docs] fix find complaint in example gathering script --- scripts/gather_examples.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gather_examples.sh b/scripts/gather_examples.sh index dd6cef0df1b..3fc726065ba 100755 --- a/scripts/gather_examples.sh +++ b/scripts/gather_examples.sh @@ -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