Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b19a93 commit 376f0efCopy full SHA for 376f0ef
1 file changed
Doc/tools/mkhowto
@@ -443,6 +443,11 @@ class Job:
443
self.run("%s %s *.html" % (PERL_BINARY, NODE2LABEL_SCRIPT))
444
finally:
445
os.chdir(pwd)
446
+ # These files need to be cleaned up here since builddir there
447
+ # can be more than one, so we clean each of them.
448
+ if self.options.discard_temps:
449
+ for fn in ("images.tex", "images.log", "images.aux"):
450
+ safe_unlink(os.path.join(builddir, fn))
451
452
def build_text(self, tempdir=None):
453
if tempdir is None:
0 commit comments