Skip to content

Commit

Permalink
Pullrequest: Set codespell command full path
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Aug 9, 2024
1 parent cbd3181 commit 277935b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/pull_request/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _get_code_spell_command(
config = context.module_config
code_spell_config = config.get("codespell", {})
code_spell_config = code_spell_config if isinstance(code_spell_config, dict) else {}
command = ["codespell"]
command = ["/usr/local/bin/codespell"]
for spell_ignore_file in (
".github/spell-ignore-words.txt",
"spell-ignore-words.txt",
Expand Down

0 comments on commit 277935b

Please sign in to comment.