Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
rv-jenkins committed Nov 22, 2024
2 parents 405891c + 9d4eb66 commit 31e79bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kontrol/foundry.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def build(self, metadata: bool) -> None:
"Error: 'forge' command not found. Please ensure that 'forge' is installed and added to your PATH."
) from err
except CalledProcessError as err:
raise RuntimeError("Couldn't forge build!") from err
raise RuntimeError(f"Couldn't forge build! {err.stderr.strip()}") from err

@cached_property
def all_tests(self) -> list[str]:
Expand Down

0 comments on commit 31e79bd

Please sign in to comment.