From 277935b2ff9b4fb60ac816717c9df1e9b55c11d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Fri, 9 Aug 2024 15:32:22 +0200 Subject: [PATCH] Pullrequest: Set codespell command full path --- github_app_geo_project/module/pull_request/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_app_geo_project/module/pull_request/checks.py b/github_app_geo_project/module/pull_request/checks.py index 745b67376af..02cfd997a9d 100644 --- a/github_app_geo_project/module/pull_request/checks.py +++ b/github_app_geo_project/module/pull_request/checks.py @@ -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",