Skip to content

Commit

Permalink
Merge pull request #3532 from smoors/20241213165324_new_pr_matlab
Browse files Browse the repository at this point in the history
show path of output file for matlab
  • Loading branch information
Micket authored Dec 15, 2024
2 parents dee750f + b6fedfe commit c222061
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 c222061

Please sign in to comment.