File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11set (CADABRA_VERSION_MAJOR 2)
22set (CADABRA_VERSION_MINOR 3)
33set (CADABRA_VERSION_PATCH 6)
4- set (CADABRA_VERSION_TWEAK 2 )
4+ set (CADABRA_VERSION_TWEAK 3 )
55set (COPYRIGHT_YEARS "2001-2020" )
66math (EXPR SYSTEM_BITS "${CMAKE_SIZEOF_VOID_P} * 8" )
77find_program (GIT git PATHS ${GIT_DIR} )
Original file line number Diff line number Diff line change @@ -480,10 +480,6 @@ void TeXEngine::convert_set(std::set<std::shared_ptr<TeXRequest> >& reqs)
480480 );
481481 auto latex_exit_status=latex_proc.get_exit_status ();
482482
483- erase_file (tmppath+" .aux" );
484- erase_file (tmppath+" .log" );
485- erase_file (tmppath+" .out" );
486-
487483 std::string err=handle_latex_errors (latex_stdout+latex_stderr, latex_exit_status);
488484 setenv (" TEXINPUTS" , oldtexinputs.c_str (), 1 );
489485
@@ -501,6 +497,10 @@ void TeXEngine::convert_set(std::set<std::shared_ptr<TeXRequest> >& reqs)
501497 throw TeXException (err);
502498 }
503499
500+ erase_file (tmppath+" .aux" );
501+ erase_file (tmppath+" .log" );
502+ erase_file (tmppath+" .out" );
503+
504504 erase_file (tmppath+" .tex" );
505505
506506 // Convert the entire dvi file to png files.
You can’t perform that action at this time.
0 commit comments