Skip to content

Commit

Permalink
Add: document cleanup tool
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Dec 4, 2018
1 parent a4a8bd5 commit 6970d53
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tools/cleanup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

if [ $# -ne 1 ]; then
echo "Usage: sh cleanup.sh <source-dir>"
exit 1
fi

source_dir=${1}

# delete already created documents
cd ${source_dir}
rm -rf doc/python_api/sphinx-in doc/python_api/sphinx-in-tmp

0 comments on commit 6970d53

Please sign in to comment.