Skip to content

Commit

Permalink
Workflow testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc committed Nov 25, 2024
1 parent 1af787c commit 00a7e17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/ci/pull_request_targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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)

Expand Down

0 comments on commit 00a7e17

Please sign in to comment.