From: Gervase Markham Date: Mon, 10 Feb 2014 17:10:12 +0000 (+0000) Subject: makedocs.pl should remove docs/en/doctrees after reST build is complete. r=LpSolit... X-Git-Tag: bugzilla-4.5.3~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ef5cef33f37d5b7ca961e0e50836f307cf0c3f5;p=thirdparty%2Fbugzilla.git makedocs.pl should remove docs/en/doctrees after reST build is complete. r=LpSolit, a=justdave. https://bugzilla.mozilla.org/show_bug.cgi?id=964540 --- diff --git a/docs/makedocs.pl b/docs/makedocs.pl index d29a3fb915..deb117ff3f 100755 --- a/docs/makedocs.pl +++ b/docs/makedocs.pl @@ -137,4 +137,6 @@ foreach my $lang (@langs) { say 'pdflatex or rst2pdf not found. Skipping PDF file creation'; } } + + rmtree('doctrees', 0, 1); }