We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c6823 commit 2895639Copy full SHA for 2895639
1 file changed
cmdstanpy/install_cmdstan.py
@@ -361,7 +361,7 @@ def compile_example(verbose: bool = False) -> None:
361
do_command(cmd, fd_out=None)
362
except RuntimeError as e:
363
# pylint: disable=raise-missing-from
364
- raise CmdStanInstallError(f'Command "make clean-all" failed\n{e}')
+ raise CmdStanInstallError(f'Command "{" ".join(cmd)}" failed:\n{e}')
365
366
if not path.is_file():
367
raise CmdStanInstallError("Failed to generate example binary")
0 commit comments