Skip to content

Commit

Permalink
Fix for #24
Browse files Browse the repository at this point in the history
  • Loading branch information
jsseidel committed Jun 16, 2019
1 parent a36f442 commit 5dcef01
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 5dcef01

Please sign in to comment.