Clean tangle

This commit is contained in:
Anthony Scemama 2022-12-08 18:34:09 +01:00
parent 68f11784ff
commit 32366c2f19
2 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,8 @@ function extract_doc()
html=${DOCS}/html/$(basename ${org%.org}.html)
text=${DOCS}/text/$(basename ${org%.org}.txt)
${srcdir}/tools/missing emacs --batch \
${srcdir}/tools/missing \
emacs --no-init-file --no-site-lisp --quick --batch \
--load="${HTMLIZE}" \
--load="${CONFIG_DOC}" \
${org} \
@ -53,6 +54,7 @@ do
# Fail if tangling failed
if [ $rc -ne 0 ] ; then
cat $exported
rm $exported
exit $rc
fi
done

View File

@ -30,7 +30,7 @@ function tangle()
return
fi
${srcdir}/tools/missing \
emacs --batch ${org_file} \
emacs --no-init-file --no-site-lisp --quick --batch ${org_file} \
--load=${srcdir}/tools/config_tangle.el \
-f org-babel-tangle
}
@ -47,6 +47,7 @@ do
# Fail if tangling failed
if [[ $rc -ne 0 ]] ; then
cat $tangled
rm $tangled
exit $rc
fi
done