From b6fedfe480eb3d6642b500aa8f86ed1734ce9bce Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Fri, 13 Dec 2024 16:53:25 +0100 Subject: [PATCH] show path of output file for matlab --- easybuild/easyblocks/m/matlab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyblocks/m/matlab.py b/easybuild/easyblocks/m/matlab.py index 56475545cd..8cf8aef6e8 100644 --- a/easybuild/easyblocks/m/matlab.py +++ b/easybuild/easyblocks/m/matlab.py @@ -206,8 +206,8 @@ def install_step(self): regex.pattern, cmd, out) with open(self.outputfile) as f: if regex.search(f.read()): - raise EasyBuildError("Found error pattern '%s' in output file of installer", - regex.pattern) + raise EasyBuildError("Found error pattern '%s' in output file of installer at %s", + regex.pattern, self.outputfile) def sanity_check_step(self): """Custom sanity check for MATLAB."""