Skip to content

Commit

Permalink
show path of output file for matlab
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Moors committed Dec 13, 2024
1 parent dee750f commit b6fedfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/m/matlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit b6fedfe

Please sign in to comment.