Skip to content

Commit 73719e6

Browse files
committed
fix(ci): custom config path
Signed-off-by: Frederic Pillon <[email protected]>
1 parent a531c22 commit 73719e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: CI/build/arduino-cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ def load_core_config():
325325
global arch
326326
cores_config_filename = ""
327327
if args.config:
328-
assert args.config.exists(), f"{args.config} not found"
329-
cores_config_filename = args.config
328+
cores_config_filename = Path(args.config)
329+
assert cores_config_filename.exists(), f"{args.config} not found"
330330
else:
331331
if args.ci:
332332
cores_config_filename = cores_config_file_ci

0 commit comments

Comments
 (0)