Skip to content
Snippets Groups Projects
Verified Commit a4ecd145 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

add missing argument from 081ca988

parent 8475a4fa
No related branches found
No related tags found
No related merge requests found
......@@ -96,14 +96,14 @@ options = '-synctex=1 -halt-on-error';
[~, rfn] = fileparts(o.fileName);
if ~isempty(o.maketoc)
% TOC compilation requires two passes
compile_tex(o, orig_dir, opts, [options ' -draftmode'], middle);
compile_tex(o, orig_dir, opts, [options ' -draftmode'], middle, rfn);
end
if status ~= 0
cd(orig_dir)
error(['@report.compile: There was an error in compiling ' rfn '.pdf.' ...
' ' opts.compiler ' returned the error code: ' num2str(status)]);
end
compile_tex(o, orig_dir, opts, options, middle);
compile_tex(o, orig_dir, opts, options, middle, rfn);
if o.showOutput || opts.showOutput
fprintf('Done.\n\nYour compiled report is located here:\n %s.pdf\n\n\n', [pwd '/' rfn])
......@@ -114,7 +114,7 @@ end
cd(orig_dir)
end
function compile_tex(o, orig_dir, opts, options, middle)
function compile_tex(o, orig_dir, opts, options, middle, rfn)
if opts.showOutput
if isoctave
system([opts.compiler ' ' options middle o.fileName]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment