Skip to content

Commit

Permalink
Fix for #25
Browse files Browse the repository at this point in the history
  • Loading branch information
Seidel, Joseph (js2589) committed May 10, 2019
1 parent d3b3421 commit 3b70858
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/mktechdocs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ if [[ "$N" != "0" ]] ; then
$template.renderer $template.pyt > $template.md
normal_exit $?
done
[[ $? != 0 ]] && exit $?
RV=$? ; [[ $RV != 0 ]] && exit $RV
fi

N=$(find . -type f | grep -c "\.htmlt$")
Expand All @@ -441,7 +441,7 @@ if [[ "$N" != "0" ]] ; then
$template.renderer $template.htmlt > $template.html
normal_exit $?
done
[[ $? != 0 ]] && exit $?
RV=$? ; [[ $RV != 0 ]] && exit $RV
fi

N=$(find . -type f | grep -c "\.gt$")
Expand All @@ -451,7 +451,7 @@ if [[ "$N" != "0" ]] ; then
gtp $template.gt > $template.md
normal_exit $?
done
[[ $? != 0 ]] && exit $?
RV=$? ; [[ $RV != 0 ]] && exit $RV
fi

#############################################################################
Expand Down

0 comments on commit 3b70858

Please sign in to comment.