File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Thank you for your interest in contributing!
55## Development Setup
66
771 . Fork the repository
8- 2 . Clone your fork: ` git clone https://github.com/YOUR_USERNAME/revenueholdings .git `
8+ 2 . Clone your fork: ` git clone https://github.com/YOUR_USERNAME/devforge-cli .git `
993 . Create a virtual environment: ` python -m venv venv `
10104 . Install dev dependencies: ` pip install -e ".[dev]" `
1111
Original file line number Diff line number Diff line change @@ -181,6 +181,9 @@ def dispatch(
181181 f"Install with: [green]pip install devforge[{ tool_name } ][/green]"
182182 )
183183 raise typer .Exit (code = 1 ) from None
184+ except Exception as e :
185+ console .print (f"[red]Unexpected error running '{ tool_name } ': { e } [/red]" )
186+ raise typer .Exit (code = 1 ) from e
184187
185188 dispatch .__name__ = tool_name
186189 dispatch .__doc__ = f"Run `{ pkg } ` commands via the { tool_name } subcommand."
You can’t perform that action at this time.
0 commit comments