Skip to content

Commit

Permalink
chore(scrupt): remove doc gen from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kamontat committed Aug 22, 2019
1 parent 42db3d3 commit 462d53f
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,18 @@
#/ Since: 16/08/2018
#/ -----------------------------------

printf "Generate godoc | "
godoc -html . >docs/godoc.html && echo "Completed" || echo "Failure"
# godoc remove -html
# printf "Generate godoc | "
# godoc -html . >docs/godoc.html && echo "Completed" || echo "Failure"

printf "Generate changelog | "
gitgo cl --location ./docs/changelog.md &>/dev/null && echo "Completed" || echo "Failure"
gitgo cl --location ./docs/changelog.md &>/dev/null && echo "Completed" || echo "Failure"

printf "Generate summary | "
echo "# Summary" >docs/summary.txt &&
git summary >>docs/summary.txt &&
echo "## Lines report" >>docs/summary.txt &&
echo >>docs/summary.txt &&
git summary --line | grep -A 100 "lines" >>docs/summary.txt &&
echo "Completed" ||
echo "Failure"
git summary >>docs/summary.txt &&
echo "## Lines report" >>docs/summary.txt &&
echo >>docs/summary.txt &&
git summary --line | grep -A 100 "lines" >>docs/summary.txt &&
echo "Completed" ||
echo "Failure"

0 comments on commit 462d53f

Please sign in to comment.