From 00a7e17be43fa95e70459c1f1025d7e51e16c526 Mon Sep 17 00:00:00 2001 From: Nick Brassel Date: Mon, 25 Nov 2024 22:55:00 +1100 Subject: [PATCH] Workflow testing. --- util/ci/pull_request_targets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/ci/pull_request_targets.py b/util/ci/pull_request_targets.py index 1b5112dc68ef..61ddf3f01111 100644 --- a/util/ci/pull_request_targets.py +++ b/util/ci/pull_request_targets.py @@ -60,7 +60,7 @@ def _unload_qmk_cli(): args = parser.parse_args() # Import the QMK CLI for the base repo -base_path = Path(args.base_path) +base_path = Path(args.base_path).absolute() print(f'Importing QMK CLI from {base_path}') _import_qmk_cli(base_path) @@ -69,7 +69,7 @@ def _unload_qmk_cli(): _unload_qmk_cli() # Import the QMK CLI for the target repo -target_path = Path(args.target_path) +target_path = Path(args.target_path).absolute() print(f'Importing QMK CLI from {target_path}') _import_qmk_cli(target_path)