Skip to content

Commit

Permalink
use exit code 1 on RuntimeError for pull command
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauch authored and ryneeverett committed Jun 7, 2024
1 parent 55a4393 commit 86c53e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bugwarrior/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ def pull(dry_run, flavor, interactive, debug, quiet):
sys.exit(1)
except RuntimeError as e:
log.exception("Aborted (%s)" % e)
sys.exit(1)


@cli.group()
Expand Down

0 comments on commit 86c53e8

Please sign in to comment.