@@ -21,7 +21,6 @@ asciidoc use asciidoc with both commits
to-asciidoc use asciidoc with the 'to'-commit
to-asciidoctor use asciidoctor with the 'to'-commit
asciidoctor use asciidoctor with both commits
-cut-footer cut away footer
"
SUBDIRECTORY_OK=1
. "$(git --exec-path)/git-sh-setup"
@@ -31,7 +30,6 @@ force=
clean=
from_program=
to_program=
-cut_footer=
while test $# -gt 0
do
case "$1" in
@@ -55,8 +53,6 @@ do
--asciidoc)
from_program=-asciidoc
to_program=-asciidoc ;;
- --cut-footer)
- cut_footer=-cut-footer ;;
--)
shift; break ;;
*)
@@ -118,8 +114,8 @@ construct_makemanflags () {
from_makemanflags=$(construct_makemanflags "$from_program") &&
to_makemanflags=$(construct_makemanflags "$to_program") &&
-from_dir=$from_oid$from_program$cut_footer &&
-to_dir=$to_oid$to_program$cut_footer &&
+from_dir=$from_oid$from_program &&
+to_dir=$to_oid$to_program &&
# generate_render_makefile <srcdir> <dstdir>
generate_render_makefile () {
@@ -168,16 +164,6 @@ render_tree () {
"$tmp/rendered/$dname+" |
make -j$parallel -f - &&
mv "$tmp/rendered/$dname+" "$tmp/rendered/$dname"
-
- if test "$cut_footer" = "-cut-footer"
- then
- for f in $(find "$tmp/rendered/$dname" -type f)
- do
- head -n -2 "$f" | sed -e '${/^$/d}' >"$f+" &&
- mv "$f+" "$f" ||
- return 1
- done
- fi
fi
}