summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSergey Karayev <sergeykarayev@gmail.com>2014-07-11 17:19:35 -0700
committerSergey Karayev <sergeykarayev@gmail.com>2014-07-11 17:19:35 -0700
commit05d661f0420d67368466dffb37976cdf7497a706 (patch)
tree26db4d7caef6e366a5e755c0dc5dfb7961737702 /scripts
parent54c94190a939ad9719f7cb788d63e92e5849bce5 (diff)
downloadcaffeonacl-05d661f0420d67368466dffb37976cdf7497a706.tar.gz
caffeonacl-05d661f0420d67368466dffb37976cdf7497a706.tar.bz2
caffeonacl-05d661f0420d67368466dffb37976cdf7497a706.zip
[docs] shelhamer's minor suggestions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gather_examples.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/gather_examples.sh b/scripts/gather_examples.sh
index f5192375..dd6cef0d 100755
--- a/scripts/gather_examples.sh
+++ b/scripts/gather_examples.sh
@@ -6,15 +6,16 @@ ROOT_DIR="$( cd "$(dirname "$0")"/.. ; pwd -P )"
cd $ROOT_DIR
# Gather docs from examples/**/readme.md
-rm -r docs/gathered
-mkdir docs/gathered
+GATHERED_DIR=docs/gathered
+rm -r $GATHERED_DIR
+mkdir $GATHERED_DIR
for README_FILENAME in $(find examples -iname "readme.md"); do
# Only use file if it is to be included in docs.
if grep -Fxq "include_in_docs: true" $README_FILENAME; then
# Make link to readme.md in docs/gathered/.
# Since everything is called readme.md, rename it by its dirname.
README_DIRNAME=`dirname $README_FILENAME`
- DOCS_FILENAME=docs/gathered/$README_DIRNAME.md
+ DOCS_FILENAME=$GATHERED_DIR/$README_DIRNAME.md
mkdir -p `dirname $DOCS_FILENAME`
ln -s $ROOT_DIR/$README_FILENAME $DOCS_FILENAME
fi
@@ -22,7 +23,7 @@ done
# Gather docs from examples/*.ipynb and add YAML front-matter.
for NOTEBOOK_FILENAME in $(find examples -d 1 -iname "*.ipynb"); do
- DOCS_FILENAME=docs/gathered/$NOTEBOOK_FILENAME
+ DOCS_FILENAME=$GATHERED_DIR/$NOTEBOOK_FILENAME
mkdir -p `dirname $DOCS_FILENAME`
python scripts/copy_notebook.py $NOTEBOOK_FILENAME $DOCS_FILENAME
done