Skip to content

Commit

Permalink
catching unknown error
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyLGalles committed Jan 10, 2025
1 parent 25d8b89 commit a5ff366
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bitwarden_workflow_linter/rules/run_actionlint.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def install_actionlint(platform_system: str) -> Tuple[bool, str]:
return True, ""
except (FileNotFoundError, subprocess.CalledProcessError):
return False, f"{error} : check Choco installation"
return False, error


def install_actionlint_source(error) -> Tuple[bool, str]:
Expand Down

0 comments on commit a5ff366

Please sign in to comment.