From 87ddce0dc3c912ba1764332483b73c34e3b7de7e Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Mon, 2 Sep 2019 18:28:24 +0200 Subject: [PATCH] change compilation message --- matlab/reporting/src/@report/compile.m | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/matlab/reporting/src/@report/compile.m b/matlab/reporting/src/@report/compile.m index 6ad6e98aa..78dcc6e6c 100644 --- a/matlab/reporting/src/@report/compile.m +++ b/matlab/reporting/src/@report/compile.m @@ -111,11 +111,7 @@ if status ~= 0 ' ' opts.compiler ' returned the error code: ' num2str(status)]); end if o.showOutput || opts.showOutput - disp('Done.'); - disp('Your compiled report is located here:'); - disp([pwd filesep rfn '.pdf']); - disp(''); - disp(''); + fprintf('Done.\n\nYour compiled report is located here:\n %s.pdf\n\n\n', [pwd filesep rfn]) end if opts.showReport && ~isoctave open([rfn '.pdf']);