Skip to content

Commit

Permalink
Merge branch 'master' of github.com:att/MkTechDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsseidel committed Jun 16, 2019
2 parents 60f41b2 + 5dcef01 commit 7507690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/mktechdocs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ N=$(find . -type f | grep -c "\.pyt$")
if [[ "$N" != "0" ]] ; then
find . -type f | grep "\.pyt$" | sed 's/\.pyt//' | while read template ; do
clog INFO "Rendering $template.pyt => $template.md"
$template.renderer $template.pyt > $template.md
/usr/bin/env python3 $template.renderer $template.pyt > $template.md
normal_exit $?
done
RV=$? ; [[ $RV != 0 ]] && exit $RV
Expand All @@ -444,7 +444,7 @@ N=$(find . -type f | grep -c "\.htmlt$")
if [[ "$N" != "0" ]] ; then
find . -type f | grep "\.htmlt$" | sed 's/\.htmlt//' | while read template ; do
clog INFO "Rendering $template.htmlt => $template.html"
$template.renderer $template.htmlt > $template.html
/usr/bin/env python3 $template.renderer $template.htmlt > $template.html
normal_exit $?
done
RV=$? ; [[ $RV != 0 ]] && exit $RV
Expand Down

0 comments on commit 7507690

Please sign in to comment.