Merge pull request #4 from FerhatMihoubi/Branch_complie

Fix bug on windows
remove-priordens
Houtan Bastani 2015-11-11 15:10:47 +01:00
commit bac8ef8520
1 changed files with 5 additions and 1 deletions

View File

@ -108,7 +108,11 @@ if status ~= 0
' ' opts.compiler ' returned the error code: ' num2str(status)]);
end
if o.showOutput || opts.showOutput
fprintf(1, ['Done.\nYour compiled report is located here:\n ' pwd filesep rfn '.pdf\n\n']);
disp('Done.');
disp('Your compiled report is located here:');
disp([pwd filesep rfn '.pdf']);
disp('');
disp('');
end
if opts.showReport && ~isoctave
open([pwd filesep rfn '.pdf']);