Skip to content

Commit

Permalink
Fix issue in generate_docs script (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
akaranjkar-qu authored Mar 18, 2020
1 parent 1540c35 commit 0b39188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir -p docs
rm -f docs/*.md

# Generate new documentation
directories=$(ls -d */ | grep -v "docs\|tests\|examples")
directories=$(ls -d */ | grep -v "docs\|tests\|examples\|shdoc")
for dx in ${directories}; do
find ${dx} -type f -name "*.sh" -exec shdoc {} \; > docs/$(dirname ${dx}.).md
done
Expand Down

0 comments on commit 0b39188

Please sign in to comment.